This commit is contained in:
2022-12-16 06:08:11 +00:00
parent 8ef3348dfd
commit 8252872e5a
160 changed files with 81168 additions and 0 deletions

28
client/webpack.config.js Normal file
View File

@@ -0,0 +1,28 @@
// webpack.config.js
module.exports = {
// optimization: {
// splitChunks: {
// chunks: "all"
// }
// },
rules: [
{
test: /\.s(c|a)ss$/,
use: [
"vue-style-loader",
"css-loader",
{
loader: "sass-loader",
options: {
implementation: require("sass"),
sassOptions: {
fiber: require("fibers"),
indentedSyntax: true // optional
}
}
}
]
}
]
};