Files
rl_2d_walker.js/webpack.config.js
T
2018-12-01 16:36:35 +08:00

10 lines
164 B
JavaScript

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