13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
|
|
import { lsPreset } from '@lingshu/theme-lib/unocss';
|
||
|
|
import { defineConfig, presetWind3 } from 'unocss';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
presets: [
|
||
|
|
presetWind3({
|
||
|
|
prefix: 'ls-',
|
||
|
|
preflight: false,
|
||
|
|
}),
|
||
|
|
lsPreset(),
|
||
|
|
],
|
||
|
|
});
|