forked from ahandsel/kintone-quick-intro-slides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindi.config.ts
34 lines (33 loc) · 863 Bytes
/
windi.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { resolve } from 'path'
import { mergeWindicssConfig, defineConfig } from 'vite-plugin-windicss'
import BaseConfig from '@slidev/client/windi.config'
// extend the base config
export default mergeWindicssConfig(
BaseConfig,
defineConfig({
extract: {
include: [
resolve(__dirname, '**/*.{vue,ts}'),
],
},
shortcuts: {
// custom the default background
'bg-main': 'bg-white text-[#181818] dark:(bg-[#121212] text-[#ddd])',
},
// theme: {
// extend: {
// colors: {
// primary: {
// DEFAULT: "#008080",
// dark: "#038378",
// darker: "#076E65",
// darkest: "#065A53",
// light: "#10B5A7",
// lighter: "#0CCABA",
// lightest: "#06E5D2",
// },
// },
// },
// },
}),
)