11 lines
194 B
JavaScript
11 lines
194 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
entry: './src/js/index.js',
|
||
|
mode: "production",
|
||
|
output: {
|
||
|
filename: 'app.js',
|
||
|
path: path.resolve(__dirname, 'public/js'),
|
||
|
},
|
||
|
};
|