-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.ts
55 lines (48 loc) · 1.18 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
import path from "path";
//@ts-expect-error - no types available
import nodePolyfills from "vite-plugin-node-stdlib-browser";
import { VitePWA } from "vite-plugin-pwa";
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
define: {
global: "globalThis",
},
plugins: [
nodePolyfills(),
react(),
VitePWA({
strategies: "injectManifest",
srcDir: "src",
filename: "sw.ts",
registerType: "prompt",
injectRegister: "auto",
pwaAssets: {
disabled: false,
config: true,
},
manifest: {
name: "DWA Starter",
short_name: "DWA",
description: "A Decentralized Web Application template",
theme_color: "#ffec19",
},
injectManifest: {
maximumFileSizeToCacheInBytes: 5000000,
globPatterns: ["**/*.{js,css,html,json,svg,png,ico}"],
},
devOptions: {
enabled: true,
navigateFallback: "index.html",
suppressWarnings: false,
type: "module",
},
}),
],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});