This commit is contained in:
2020-12-01 17:23:55 -03:00
parent 45f1c87e87
commit 556bcd15ed
3 changed files with 75 additions and 0 deletions

10
webpack.config.js Normal file
View File

@ -0,0 +1,10 @@
const path = require('path')
module.exports = {
context: path.resolve(__dirname),
entry: './resources/js/app.js',
output: {
path: path.resolve(__dirname),
filename: './public/js/app.js'
}
}