webpack/test/configCases/plugins/source-map-dev-tool-plugin/webpack.config.js

30 lines
574 B
JavaScript

"use strict";
const TerserPlugin = require("terser-webpack-plugin");
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
node: {
__dirname: false,
__filename: false
},
entry: {
bundle0: ["./index.js"],
"public/test": ["./test.js"]
},
output: {
filename: "[name].js"
},
optimization: {
minimizer: [new TerserPlugin()]
},
plugins: [
new webpack.SourceMapDevToolPlugin({
filename: "sourcemaps/[file].map",
publicPath: "https://10.10.10.10/project/",
fileContext: "public"
})
]
};