mirror of https://github.com/webpack/webpack.git
34 lines
417 B
JavaScript
34 lines
417 B
JavaScript
"use strict";
|
|
|
|
/** @type {import("../../../../").Configuration} */
|
|
module.exports = [
|
|
{
|
|
target: "web",
|
|
mode: "development",
|
|
module: {
|
|
generator: {
|
|
"css/auto": {
|
|
esModule: false
|
|
}
|
|
}
|
|
},
|
|
experiments: {
|
|
css: true
|
|
}
|
|
},
|
|
{
|
|
target: "node",
|
|
mode: "development",
|
|
module: {
|
|
generator: {
|
|
"css/auto": {
|
|
esModule: false
|
|
}
|
|
}
|
|
},
|
|
experiments: {
|
|
css: true
|
|
}
|
|
}
|
|
];
|