-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
59 lines (57 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
// import { SvelteKitPWA } from '@vite-pwa/sveltekit';
import pkg from './package.json';
export default defineConfig({
resolve: {
alias: {
// fixed Prisma bundling bug when importing enums
// see https://github.com/prisma/prisma/issues/12504
'.prisma/client/index-browser': './node_modules/.prisma/client/index-browser.js'
}
},
define: {
__BUILD_DATE__: `'${new Date().toISOString()}'`,
__PERIODIC_UPDATE_SW__: false,
SVELTE_VERSION: JSON.stringify(pkg.devDependencies['svelte'].substring(1)),
SVELTEKIT_VERSION: JSON.stringify(pkg.devDependencies['@sveltejs/kit'].substring(1)),
AUTHJS_VERSION: JSON.stringify(pkg.dependencies['@auth/core'].substring(1)),
'process.env.NODE_ENV': process.env.NODE_ENV === 'production' ? '"production"' : '"development"'
},
plugins: [
sveltekit(),
// SvelteKitPWA({
// srcDir: './src',
// mode: 'development',
// strategies: 'injectManifest',
// filename: 'sw.ts',
// scope: '/',
// base: '/',
// selfDestroying: process.env.SELF_DESTROYING_SW === 'true',
// manifest: {
// short_name: 'SvelteKit Sample PWA',
// name: 'SvelteKit Sample PWA',
// start_url: '/',
// scope: '/',
// display: 'standalone',
// theme_color: '#ffffff',
// background_color: '#ffffff',
// icons: []
// },
// injectManifest: {
// globPatterns: ['client/**/*.{js,css,ico,png,svg,webp,woff,woff2}']
// },
// workbox: {
// globPatterns: ['client/**/*.{js,css,ico,png,svg,webp,woff,woff2}']
// },
// devOptions: {
// enabled: false,
// type: 'module',
// navigateFallback: '/'
// }
// })
],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
});