You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
782 B
30 lines
782 B
import { defineConfig } from 'vite' |
|
import vue from '@vitejs/plugin-vue' |
|
import path from 'path' |
|
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' |
|
// https://vitejs.dev/config/ |
|
export default defineConfig({ |
|
plugins: [ |
|
vue(), |
|
// 配置svg插件 |
|
createSvgIconsPlugin({ |
|
// Specify the icon folder to be cached |
|
iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')], |
|
// Specify symbolId format |
|
symbolId: 'icon-[dir]-[name]', |
|
}), |
|
], |
|
resolve: { |
|
alias: { |
|
'@': path.resolve('./src'), // 相对路径别名配置,使用 @ 代替 src |
|
}, |
|
}, |
|
css: { |
|
preprocessorOptions: { |
|
scss: { |
|
javascriptEnabled: true, |
|
additionalData: '@import "./src/styles/variable.scss";', |
|
}, |
|
}, |
|
}, |
|
})
|
|
|