chore: 🤖 remove calendar css from library_loader

This commit is contained in:
Jin
2025-03-28 17:08:34 +01:00
parent accf245179
commit 4a2c075935
3 changed files with 8 additions and 8 deletions

View File

@@ -56,7 +56,10 @@ const config: Configuration = {
loader: miniCssExtractPlugin.loader
},
{
loader: "css-loader"
loader: "css-loader",
options: {
esModule: true
}
},
{
loader: "postcss-loader",
@@ -99,6 +102,9 @@ const config: Configuration = {
".js": [".js", ".ts"],
".cjs": [".cjs", ".cts"],
".mjs": [".mjs", ".mts"]
},
alias: {
stylesheets: path.resolve(rootDir, "src/public/stylesheets")
}
},
devtool: "nosources-source-map",