driver.js / webpack.dev.config.js
kamrify's picture
Add basic dev setup
d86254c
raw
history blame
335 Bytes
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"
}
};