mirror of
https://github.com/h5bp/html5-boilerplate.git
synced 2026-01-08 06:13:53 -05:00
13 lines
199 B
JavaScript
13 lines
199 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: {
|
|
app: './js/app.js',
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
clean: true,
|
|
filename: './js/app.js',
|
|
},
|
|
};
|