File size: 335 Bytes
d86254c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
const path = require('path');
module.exports = {
mode: 'development',
entry: [
"./assets/scripts/src/sholo.js"
],
output: {
publicPath: '/assets/scripts/dist/',
path: path.join(__dirname, 'dist'),
filename: 'sholo.min.js',
libraryTarget: "umd",
library: "Sholo"
}
}; |