-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.ts
45 lines (43 loc) · 1.3 KB
/
vite.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
import { qwikVite } from '@builder.io/qwik/optimizer'
import { qwikCity } from '@builder.io/qwik-city/vite'
import { fileURLToPath } from 'node:url'
import UnoCSS from 'unocss/vite'
import { defineConfig } from 'vite'
import { VitePWA } from 'vite-plugin-pwa'
import { watch } from 'vite-plugin-watch'
import tsconfigPaths from 'vite-tsconfig-paths'
import pwaConfig from './pwa.config'
import unoConfig from './uno.config'
export default defineConfig({
build: { cssMinify: 'lightningcss' },
css: { transformer: 'lightningcss' },
plugins: [
qwikCity(),
qwikVite({ devTools: { clickToSource: false } }),
UnoCSS(unoConfig),
VitePWA(pwaConfig),
tsconfigPaths(),
// https://github.com/contentlayerdev/contentlayer/issues/179#issuecomment-1789585127
watch({
command: 'contentlayer build',
pattern: './posts/**/*.{mdx,md}',
}),
],
resolve: {
// https://github.com/contentlayerdev/contentlayer/issues/400#issuecomment-1475146460
alias: [{
find: 'contentlayer/generated',
replacement: fileURLToPath(new URL('.contentlayer/generated', import.meta.url)),
}],
},
// dev: {
// headers: {
// "Cache-Control": "public, max-age=0",
// },
// },
// preview: {
// headers: {
// "Cache-Control": "public, max-age=600",
// },
// },
})