Files
lifeEngine/webpack.config.js
2020-07-22 18:52:51 -06:00

12 lines
232 B
JavaScript

const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist/js/'),
},
externals: {
jquery: 'jQuery'
}
};