mirror of
https://gitee.com/ssssssss-team/magic-boot.git
synced 2026-04-26 00:00:04 +08:00
build 正常使用
This commit is contained in:
@@ -5,17 +5,34 @@ import viteSvgIcons from 'vite-plugin-svg-icons'
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
vue(),
|
||||
viteSvgIcons({
|
||||
iconDirs: [path.resolve(process.cwd(), 'src/icons')],
|
||||
symbolId: 'mb-icon-[name]'
|
||||
})
|
||||
],
|
||||
resolve: {
|
||||
base: './',
|
||||
plugins: [
|
||||
vue(),
|
||||
viteSvgIcons({
|
||||
iconDirs: [path.resolve(process.cwd(), 'src/icons')],
|
||||
symbolId: 'mb-icon-[name]'
|
||||
})
|
||||
],
|
||||
resolve: {
|
||||
extensions: ['.vue', '.json', '.js'],
|
||||
alias: {
|
||||
'@': path.resolve(__dirname,'src')
|
||||
alias: {
|
||||
'@': path.resolve(__dirname,'src')
|
||||
}
|
||||
},
|
||||
css: {//去除@charset UTF-8规则影响
|
||||
postcss: {
|
||||
plugins: [
|
||||
{
|
||||
postcssPlugin: 'internal:charset-removal',
|
||||
AtRule: {
|
||||
charset: (atRule) => {
|
||||
if (atRule.name === 'charset') {
|
||||
atRule.remove();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user