12345678910111213141516171819202122 |
- /**
- * Introduces component library styles on demand.
- * https://github.com/anncwb/vite-plugin-style-import
- */
- import styleImport from 'vite-plugin-style-import'
- export function configStyleImportPlugin(isBuild: boolean) {
- if (!isBuild) return []
- const styleImportPlugin = styleImport({
- libs: [
- {
- libraryName: 'ant-design-vue',
- esModule: true,
- resolveStyle: name => {
- return `ant-design-vue/es/${name}/style/index`
- }
- }
- ]
- })
- return styleImportPlugin
- }
|