refactor: change theme handling to support element-ui scss variables

This commit is contained in:
pa
2025-07-27 21:39:10 +09:00
committed by Natsumi
parent 96dfe2fcef
commit def96c1a4d
6 changed files with 91 additions and 98 deletions

View File

@@ -64,7 +64,14 @@ module.exports = (env, argv) => {
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader'
{
loader: 'sass-loader',
options: {
sassOptions: {
quietDeps: true
}
}
}
]
},
{
@@ -77,7 +84,13 @@ module.exports = (env, argv) => {
]
},
devServer: {
port: 9000
port: 9000,
client: {
overlay: {
warnings: false,
errors: true
}
}
},
resolve: {
extensions: ['.js', '.vue', '.css', '.scss'],