mirror of https://github.com/webpack/webpack.git
21 lines
287 B
JavaScript
21 lines
287 B
JavaScript
|
"use strict";
|
||
|
|
||
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
target: "web",
|
||
|
mode: "development",
|
||
|
devtool: "source-map",
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.css$/i,
|
||
|
type: "css",
|
||
|
extractSourceMap: true
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
experiments: {
|
||
|
css: true
|
||
|
}
|
||
|
};
|