-
Notifications
You must be signed in to change notification settings - Fork 0
/
iles.config.ts
165 lines (148 loc) · 4.85 KB
/
iles.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'iles'
import type { LiveDesignerOptions } from '@pinegrow/vite-plugin'
import AutoImportAPIs from 'unplugin-auto-import/vite'
import Unocss from 'unocss/vite'
import presetIcons from '@unocss/preset-icons'
import VueDevTools from 'vite-plugin-vue-devtools'
// import myIlesModule from './src/modules/my-module'
import site from './src/site'
const { url: siteUrl } = site
export default defineConfig({
siteUrl,
// turbo: true,
jsx: 'preact', // 'solid', 'react', 'vue'
svelte: true,
modules: [
// myIlesModule,
// 'prismjs/themes/prism-tomorrow.css' via app.ts
'@islands/prism',
[
'@pinegrow/iles-module',
{
liveDesigner: {
iconPreferredCase: 'unocss', // default value (can be removed), unocss by default uses the unocss format for icon names
devtoolsKey: 'devtools', // see app.ts
/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
tailwindcss: {
configPath: 'tailwind.config.ts',
cssPath: '@/assets/css/tailwind.css',
// themePath: false, // Set to false so that Design Panel is not used
// restartOnConfigUpdate: true,
restartOnThemeUpdate: true,
},
// plugins: [
// {
// name: 'My Awesome Lib 3.0',
// key: 'my-awesome-lib',
// pluginPath: fileURLToPath(
// new URL('./my-awesome-lib/web-types.json', import.meta.url),
// ),
// },
// ],
} as LiveDesignerOptions,
},
],
//...
],
markdown: {
rehypePlugins: [
[
'rehype-external-links',
{
target: '_blank',
rel: ['noopener'],
test: (node: any) => /^https?:\/\//.test(node.properties.href),
},
],
],
},
// Update config as per your needs
// For details, refer to https://github.com/antfu/unplugin-vue-components#configuration
components: {
/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
// dirs: ['src/components'], // already included by iles
// allow auto load markdown components under ./src/components/
// extensions: ['vue', 'jsx', 'tsx', 'js', 'ts', 'mdx', 'svelte'] // already included by iles
// allow auto import and register components used in markdown
// include: [/\.vue$/, /\.vue\?vue/, /\.md$/, /\.mdx?/] // already included by iles
// resolvers: [], // Auto-import using resolvers
// transformer: 'vue3', // already set by iles
dts: 'components.d.ts',
},
// Update config as per your needs
// For details, refer to https://iles.pages.dev/guide/plugins#islandspages
/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
// pagesDir: 'src/pages', // already set by iles
// extendFrontmatter (frontmatter, filename) {
// //...
// },
// extendRoute (route) {
// //...
// },
// extendRoutes (routes) {
// //...
// },
vue: {
template: {
compilerOptions: {
isCustomElement: (tag) => tag === 'lite-youtube',
},
},
},
vite: {
plugins: [
// For details, refer to https://github.com/antfu/unplugin-auto-import#configuration
AutoImportAPIs({
include: [
/\.[tj]sx?$/, // .ts, .tsx, .js, .jsx
/\.vue$/,
/\.vue\?vue/, // .vue
/\.md$/, // .md
/\.mdx$/, // .mdx
],
imports: [
'vue',
// 'vue-router',
// 'vue-i18n',
// 'vue/macros',
'@vueuse/head',
'@vueuse/core',
'pinia',
],
dirs: [
/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
'src/composables',
'src/utils',
'src/stores',
],
vueTemplate: true,
dts: 'auto-imports.d.ts',
}),
Unocss({
presets: [
presetIcons({
prefix: 'i-', // default prefix, do not change
}),
],
content: {
pipeline: {
include: ['./src/**/*'],
},
},
}),
VueDevTools(),
],
resolve: {
alias: {
/* Must be either an object, or an array of { find, replacement, customResolver } pairs. */
/* Refer to: https://vitejs.dev/config/shared-options.html#resolve-alias */
/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
'@': fileURLToPath(new URL('./src', import.meta.url)),
'~': fileURLToPath(new URL('./src', import.meta.url)),
'~~': fileURLToPath(new URL('./', import.meta.url)),
},
},
},
//...
})