-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
83 lines (77 loc) · 1.51 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
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
import path from 'path'
import { defineConfig, splitVendorChunkPlugin } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
import { VitePWA } from 'vite-plugin-pwa'
import Icons from 'unplugin-icons/vite'
import * as postcss from './postcss.config.js'
const BASE = '/weather-site/'
/** @type {import('vite-plugin-pwa').ManifestOptions} */
const PWA_MANIFEST = {
name: 'Weather',
short_name: 'Weather',
background_color: '#26282b',
icons: [
{
src: 'icons/pwa.svg',
type: 'image/svg+xml',
sizes: '150x150',
},
],
}
const config = defineConfig({
plugins: [
svelte(),
Icons({ compiler: 'svelte' }),
splitVendorChunkPlugin(),
VitePWA({
registerType: 'autoUpdate',
base: BASE,
devOptions: {
enabled: true,
resolveTempFolder: () => path.resolve(__dirname, './build'),
},
manifest: PWA_MANIFEST,
manifestFilename: 'manifest.json',
workbox: {
globPatterns: [
// default
'**/*.{js,css,html}',
'**/locales/*.json',
'**/icons/weather-icons/32/*.svg',
],
},
}),
],
resolve: {
alias: {
src: path.resolve(__dirname, './src'),
},
},
esbuild: {
include: ['js', 'svelte'],
},
clearScreen: false,
server: {
port: 8080,
},
build: {
sourcemap: true,
minify: true,
outDir: 'build',
},
envDir: '.env',
base: BASE,
optimizeDeps: {
exclude: ['tinro'],
},
css: {
preprocessorOptions: {
scss: {
additionalData: '@use "src/variables.scss" as *;',
},
},
postcss,
devSourcemap: true,
},
})
export default config