Skip to content

Commit bc03c6c

Browse files
authored
chore(examples): fix module import (#6575)
1 parent df9889b commit bc03c6c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/server.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ server = http.createServer(function (req, res) {
128128
// Process server request
129129
else if (new RegExp('(' + dirs.join('|') + ')\/server').test(url)) {
130130
if (fs.existsSync(path.join(__dirname, url + '.js'))) {
131-
require(path.join(__dirname, url + '.js'))(req, res);
131+
import('./' + url + '.js').then(module => {
132+
module.default(req, res)
133+
});
132134
} else {
133135
send404(res);
134136
}

0 commit comments

Comments
 (0)