-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
141 lines (132 loc) · 4.37 KB
/
astro.config.mjs
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
import { EventEmitter } from 'events'
// Increasing the maxListeners from default 10 to 15 as there are more than 10 vite plugins (mostly vite/astro) ones using fswatcher
EventEmitter.defaultMaxListeners = 15
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'astro/config'
import mdx from '@astrojs/mdx'
import sitemap from '@astrojs/sitemap'
import vue from '@astrojs/vue'
// import preact from '@astrojs/preact'
// import solidJs from '@astrojs/solid-js'
// import react from '@astrojs/react'
// import svelte from '@astrojs/svelte'
import Pinegrow from '@pinegrow/astro-module'
import AutoImportComponents from 'unplugin-vue-components/vite'
import AutoImportAPIs from 'unplugin-auto-import/astro'
import Unocss from 'unocss/vite'
import presetIcons from '@unocss/preset-icons'
// import myAstroModule from './src/modules/my-module'
// import { visualizer } from 'rollup-plugin-visualizer'
import site from './src/site'
const { url } = site
// https://astro.build/config
export default defineConfig({
site: url,
integrations: [
// myAstroModule,
vue({
appEntrypoint: '/src/app',
devtools: true,
template: {
compilerOptions: {
isCustomElement: (tag) => tag === 'lite-youtube',
},
},
}),
// preact({
// include: ['**/preact/*'],
// }),
// react({
// include: ['**/react/*'],
// }),
// solidJs({
// include: ['**/solid/*'],
// }),
// svelte(),
mdx(),
sitemap(),
// 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',
}),
Pinegrow({
liveDesigner: {
iconPreferredCase: 'unocss', // default value (can be removed), unocss by default uses the unocss format for icon names
// plugins: [
// {
// name: 'My Awesome Lib 3.0',
// key: 'my-awesome-lib',
// pluginPath: fileURLToPath(
// new URL('./web-types/my-awesome-lib.json', import.meta.url),
// ),
// },
// ],
},
}),
],
vite: {
plugins: [
// For details, refer to https://github.com/antfu/unplugin-vue-components#configuration
AutoImportComponents({
/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
dirs: ['src/components'], // allow auto load markdown components under ./src/components/
extensions: ['vue', 'md'], // allow auto import and register components used in markdown
include: [/\.vue$/, /\.vue\?vue/, /\.md$/, /\.mdx?/],
// resolvers: [], // Auto-import using resolvers
dts: 'components.d.ts',
}),
Unocss({
presets: [
presetIcons({
prefix: 'i-', // default prefix, do not change
}),
],
content: {
pipeline: {
/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
include: ['./src/**/*'],
},
},
}),
],
// build: {
// // Vite uses Rollup under the hold, so rollup options & plugins can be used for advanced usage
// rollupOptions: {
// plugins: [visualizer()],
// },
// },
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)),
},
},
},
})