Files
RustPython/wasm/example/webpack.config.js
2020-12-16 09:21:07 -06:00

13 lines
275 B
JavaScript

const path = require('path');
module.exports = {
entry: './src/index.js',
mode: 'development',
output: {
path: path.join(__dirname, 'dist'),
filename: 'app.js',
publicPath: '/dist/',
},
devtool: 'cheap-module-eval-source-map',
};