2025-07-16 22:29:28 +08:00
|
|
|
"use strict";
|
|
|
|
|
2020-04-20 13:36:55 +08:00
|
|
|
/** @type {import("../../../../").Configuration} */
|
2017-06-03 00:05:25 +08:00
|
|
|
module.exports = {
|
2017-12-13 23:05:21 +08:00
|
|
|
mode: "development",
|
2017-06-03 00:05:25 +08:00
|
|
|
node: {
|
|
|
|
__dirname: false,
|
|
|
|
__filename: false
|
|
|
|
},
|
|
|
|
devtool: "source-map",
|
|
|
|
output: {
|
2020-08-19 03:14:43 +08:00
|
|
|
filename: "bundle0.js?[contenthash]",
|
|
|
|
sourceMapFilename:
|
|
|
|
"[file]-[contenthash].map?[contenthash]-[contenthash:6][query]"
|
2017-12-13 23:05:21 +08:00
|
|
|
}
|
2017-06-03 00:05:25 +08:00
|
|
|
};
|