Push what I have I guess
This commit is contained in:
parent
ee9a34716d
commit
c5f6b1a919
3 changed files with 1309 additions and 621 deletions
|
@ -1,6 +1,13 @@
|
|||
module.exports = {
|
||||
entry: './resources/assets/scripts/app.js',
|
||||
mode: 'development',
|
||||
performance: {
|
||||
hints: false,
|
||||
},
|
||||
entry: {
|
||||
main: './resources/assets/scripts/app.js',
|
||||
},
|
||||
output: {
|
||||
path: '/dist',
|
||||
filename: 'webpack.build.js',
|
||||
},
|
||||
module: {
|
||||
|
@ -29,10 +36,8 @@ module.exports = {
|
|||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
// 'vue': 'vue/dist/vue.js'
|
||||
'vue$': 'vue/dist/vue.esm.js'
|
||||
},
|
||||
extensions: ['*', '.js', '.vue', '.json']
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
|
|
Reference in a new issue