mirror of
https://github.com/modelec/modelec.club.git
synced 2026-01-18 16:37:30 +01:00
15 lines
241 B
JavaScript
15 lines
241 B
JavaScript
// webpack.config.js
|
|
module.exports = {
|
|
// Other configuration options...
|
|
devtool: 'source-map',
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.js$/,
|
|
use: ['source-map-loader'],
|
|
enforce: 'pre',
|
|
},
|
|
],
|
|
},
|
|
};
|