webpack/test/configCases/asset-url/target-node3/webpack.config.js

11 lines
219 B
JavaScript
Raw Normal View History

2020-08-05 05:42:29 +08:00
/** @type {import("../../../../").Configuration} */
module.exports = {
mode: "development",
target: "node",
devtool: false,
output: {
assetModuleFilename: "[name][ext]",
2020-08-08 17:21:33 +08:00
publicPath: "https://example.com/"
2020-08-05 05:42:29 +08:00
}
};