2021-01-18 22:42:35 +08:00
|
|
|
import styleImport from 'vite-plugin-style-import';
|
|
|
|
|
|
|
|
|
|
export function configStyleImportConfig() {
|
|
|
|
|
const pwaPlugin = styleImport({
|
|
|
|
|
libs: [
|
|
|
|
|
{
|
|
|
|
|
libraryName: 'ant-design-vue',
|
2021-01-18 23:37:36 +08:00
|
|
|
esModule: true,
|
2021-01-18 22:42:35 +08:00
|
|
|
resolveStyle: (name) => {
|
2021-01-18 23:37:36 +08:00
|
|
|
return `ant-design-vue/es/${name}/style/css`;
|
2021-01-18 22:42:35 +08:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
return pwaPlugin;
|
|
|
|
|
}
|