forked from Rust-related/RustPython
13 lines
275 B
JavaScript
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',
|
|
};
|