Skip to content

Commit fe05209

Browse files
committed
fix: swap the entry order
1 parent 79eff68 commit fe05209

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webpack/webpack.common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ const path = require('path');
44

55
module.exports = {
66
entry: {
7-
app: './statik/scripts/app.js',
8-
vendor: './statik/scripts/vendor.js'
7+
vendor: './statik/scripts/vendor.js',
8+
app: './statik/scripts/app.js'
99
},
1010
output: {
1111
filename: '[name].js',

0 commit comments

Comments
 (0)