Skip to content

Commit 63438ef

Browse files
committed
Fix the output path for webpack bundle file when development
1 parent 752765e commit 63438ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ if (process.env.NODE_ENV === 'production') {
8686
};
8787
} else {
8888
// development configurations
89-
module.exports.output.filename = 'static/js/[name].js';
89+
module.exports.output.filename = 'dist/[name].js';
9090

9191
module.exports.module.loaders = module.exports.module.loaders.concat([
9292
{

0 commit comments

Comments
 (0)