-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
63 lines (60 loc) · 1.6 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
60
61
62
63
// vite.config.js
import basicSsl from "@vitejs/plugin-basic-ssl";
import { defineConfig } from "vite";
import { VitePWA } from "vite-plugin-pwa";
const commonPlugins = [
VitePWA({
disable: process.env.DISABLE_SERVICE_WORKER === "true",
registerType: "autoUpdate",
includeAssets: [
"favicon.ico",
"icon.svg",
"icons/apple-touch-icon-180x180.png",
],
workbox: {
// Exclude all files in apps directory from beeing intercepted
// by the service worker
navigateFallbackDenylist: [/^\/apps/],
// Define files to be pre-cached (all except the settings files
// & the apps dir)
globIgnores: ["apps/**/*", "settings*.js"],
globPatterns: ["**/*{js,css,html,ico,png,svg,woff}"],
},
manifest: {
name: "Evento",
short_name: "Evento",
description: "Schulverwaltungsapplikation des Kantons Bern",
theme_color: "#3C505A",
icons: [
{
src: "icons/pwa-64x64.png",
sizes: "64x64",
type: "image/png",
},
{
src: "icons/pwa-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "icons/pwa-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "any",
},
{
src: "icons/maskable-icon-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable",
},
],
},
}),
];
export default defineConfig({
server: {
port: 3000,
},
plugins: process.env.SSL ? [...commonPlugins, basicSsl()] : commonPlugins,
});