-
-
Notifications
You must be signed in to change notification settings - Fork 312
/
vite.config.js
43 lines (43 loc) · 1.18 KB
/
vite.config.js
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
import { sveltekit } from '@sveltejs/kit/vite'
import { defineConfig, loadEnv } from 'vite'
// import { join } from 'path'
// import { partytownVite } from '@builder.io/partytown/utils'
import { SvelteKitPWA } from '@vite-pwa/sveltekit'
/** @type {import('vite').UserConfig} */
export default defineConfig(({ command, mode }) => {
const env = loadEnv(mode, process.cwd(), '')
const HTTP_ENDPOINT = env.PUBLIC_LITEKART_API_URL || 'https://api.litekart.in'
return {
plugins: [
sveltekit(),
SvelteKitPWA({
registerType: 'autoUpdate',
workbox: {
globPatterns: ['**/*.{ico,png,svg,webp}']
},
srcDir: './src',
// mode: 'development',
scope: '/',
base: '/',
devOptions: {
// enabled: true,
type: 'module',
navigateFallback: '/'
},
// if you have shared info in svelte config file put in a separate module and use it also here
kit: {}
})
// partytownVite({
// dest: join(process.cwd(), 'static', '~partytown')
// })
],
server: {
host: true,
port: 3000,
proxy: {
'/api': HTTP_ENDPOINT,
'/sitemap': 'https://s3.ap-south-1.amazonaws.com/litekart.in'
}
}
}
})