|
@@ -1,4 +1,3 @@
|
|
|
-import { presetTypography, presetUno } from 'unocss';
|
|
|
import UnoCSS from 'unocss/vite';
|
|
|
import { type UserConfig } from 'vite';
|
|
|
|
|
@@ -17,11 +16,7 @@ const commonConfig: (mode: string) => UserConfig = (mode) => ({
|
|
|
maxParallelFileOps: 3,
|
|
|
},
|
|
|
},
|
|
|
- plugins: [
|
|
|
- UnoCSS({
|
|
|
- presets: [presetUno(), presetTypography()],
|
|
|
- }),
|
|
|
- ],
|
|
|
+ plugins: [UnoCSS()],
|
|
|
});
|
|
|
|
|
|
export { commonConfig };
|