mirror of https://github.com/webpack/webpack.git
21 lines
307 B
JavaScript
21 lines
307 B
JavaScript
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
mode: "development",
|
|
target: "webworker",
|
|
devtool: false,
|
|
output: {
|
|
assetModuleFilename: "[name][ext]"
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.css$/,
|
|
type: "asset/resource"
|
|
}
|
|
]
|
|
},
|
|
experiments: {
|
|
asset: true
|
|
}
|
|
};
|