-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
95 lines (92 loc) · 2.16 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
84
85
86
87
88
89
90
91
92
93
94
95
import { svelte } from '@sveltejs/vite-plugin-svelte'
import tailwindcss from '@tailwindcss/vite'
import fs from 'fs'
import { visualizer } from 'rollup-plugin-visualizer'
import { fileURLToPath, URL } from 'url'
import { defineConfig } from 'vite'
import { VitePWA } from 'vite-plugin-pwa'
import createHtmlPlugin from 'vite-plugin-simple-html'
import { cssMinify } from './cssMinify'
const BASE = '/wettr/'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
VitePWA({
base: BASE,
registerType: 'autoUpdate',
manifest: {
name: 'Wettr',
icons: [
{
src: BASE + 'favicon/icon.svg',
sizes: '192x192',
type: 'image/svg+xml',
purpose: 'any',
},
{
src: BASE + 'favicon/android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any maskable',
},
],
theme_color: '#000',
display: 'standalone',
},
workbox: {
sourcemap: false,
},
}),
svelte({}),
visualizer(),
createHtmlPlugin({ minify: true }),
tailwindcss(),
cssMinify(),
],
base: BASE,
build: {
minify: 'terser',
target: 'esnext',
cssMinify: 'lightningcss',
terserOptions: {
compress: {
ecma: 2020,
keep_fargs: false,
booleans: true,
booleans_as_integers: true,
pure_getters: true,
pure_new: true,
toplevel: true,
unsafe_arrows: false,
unsafe_comps: true,
unsafe_math: true,
unsafe_undefined: true,
unsafe_methods: true,
unsafe_regexp: true,
module: true,
passes: 4,
},
},
},
css: {
transformer: 'lightningcss',
lightningcss: {
//targets: browserslistToTargets(browserslist('>= 0.25%')),
},
},
server: {
open: false,
https: {
key: fs.readFileSync('localhost-key.pem'),
cert: fs.readFileSync('localhost.pem'),
},
},
resolve: {
alias: [
{
find: '@',
replacement: fileURLToPath(new URL('./src', import.meta.url)),
},
],
},
})