-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
42 lines (41 loc) · 1.08 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
import { defineConfig, loadEnv } from "vite";
import react from "@vitejs/plugin-react";
import { VitePWA } from "vite-plugin-pwa";
import process from "node:process";
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }) => {
const env = loadEnv(mode, process.cwd());
return {
base: env.VITE_BASE_URL,
test: {
environment: "happy-dom",
},
plugins: [
react(),
VitePWA({
workbox: {
globPatterns: ["**/*"],
},
includeAssets: ["**/*"],
manifest: {
id: env.VITE_TITLE,
name: env.VITE_TITLE,
short_name: env.VITE_TITLE,
description: env.VITE_DESCRIPTION,
start_url: env.VITE_BASE_URL + "/",
scope: env.VITE_BASE_URL + "/",
theme_color: env.VITE_THEME_COLOR,
background_color: "#222222",
icons: [
{
src: "apple-touch-icon.png",
sizes: "512x512",
type: "image/png",
purpose: "any maskable",
},
],
},
}),
],
};
});