Files
lifeEngine/webpack.config.js
MaxRobinsonTheGreat 8d208ca9cc Added webpack
2020-06-30 13:51:32 -06:00

9 lines
178 B
JavaScript

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