js-restaurant/webpack.config.js
2023-05-04 12:53:09 -07:00

9 lines
No EOL
149 B
JavaScript
Executable file

module.exports = {
mode: 'development',
entry: {
index: './src/js/index.js'
},
output: {
filename: 'main.js',
},
};