mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-25 02:58:40 +08:00
23 lines
518 B
TypeScript
23 lines
518 B
TypeScript
/**
|
|
* 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 pwaPlugin = styleImport({
|
|
libs: [
|
|
{
|
|
libraryName: 'ant-design-vue',
|
|
esModule: true,
|
|
resolveStyle: (name) => {
|
|
return `ant-design-vue/es/${name}/style/index`;
|
|
},
|
|
},
|
|
],
|
|
});
|
|
return pwaPlugin;
|
|
}
|