mirror of https://github.com/webpack/webpack.git
17 lines
330 B
JavaScript
17 lines
330 B
JavaScript
"use strict";
|
|
|
|
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
mode: "development",
|
|
node: {
|
|
__dirname: false,
|
|
__filename: false
|
|
},
|
|
devtool: "source-map",
|
|
output: {
|
|
filename: "bundle0.js?[contenthash]",
|
|
sourceMapFilename:
|
|
"[file]-[contenthash].map?[contenthash]-[contenthash:6][query]"
|
|
}
|
|
};
|