aozhiwei 51841c03ff 1
2022-02-17 16:24:51 +08:00

11 lines
195 B
JavaScript

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