1234567891011121314151617181920212223 |
- 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;
- }
|