-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
47 lines (46 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
46
47
import { qwikVite } from '@builder.io/qwik/optimizer';
import { qwikCity } from '@builder.io/qwik-city/vite';
import { defineConfig } from 'vite';
import tsconfigPaths from 'vite-tsconfig-paths';
import { qwikNxVite } from 'qwik-nx/plugins';
import { qwikSpeakInline } from 'qwik-speak/inline';
export default defineConfig({
cacheDir: '../../node_modules/.vite/apps/website',
plugins: [
qwikNxVite(),
qwikCity(),
qwikVite({
client: {
outDir: '../../dist/apps/website/client',
},
ssr: {
outDir: '../../dist/apps/website/server',
},
tsconfigFileNames: ['tsconfig.app.json'],
}),
qwikSpeakInline({
supportedLangs: ['en', 'de'],
defaultLang: 'en',
assetsPath: 'apps/website/src/locales',
}),
tsconfigPaths({ root: '../../' }),
],
server: {
fs: {
allow: ['../../'],
},
},
preview: {
headers: {
'Cache-Control': 'public, max-age=600',
},
},
test: {
globals: true,
cache: {
dir: '../../node_modules/.vitest',
},
environment: 'node',
include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
},
});