Files
lifeEngine/webpack.config.js
MaxRobinsonTheGreat 9b24e4cc1c basic evolution finished
2020-07-04 14:01:30 -06:00

12 lines
228 B
JavaScript

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