This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
64 lines (63 loc) · 1.77 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
64
import react from "@vitejs/plugin-react";
import ssr from "vite-plugin-ssr/plugin";
/// <reference types="vitest" />
import { defineConfig } from "vite";
import { visualizer } from "rollup-plugin-visualizer";
import compress from "vite-plugin-compression";
import tsconfig from "vite-tsconfig-paths";
import { vanillaExtractPlugin } from "@vanilla-extract/vite-plugin";
import { VitePWA } from "vite-plugin-pwa";
export default defineConfig(async ({ mode }) => {
return {
build: {
minify: "terser",
},
plugins: [
react(),
ssr({ prerender: true }),
vanillaExtractPlugin(),
VitePWA({
registerType: "autoUpdate",
workbox: {
inlineWorkboxRuntime: true,
},
manifest: {
name: "第58回鈴鹿高専祭",
short_name: "第58回鈴鹿高専祭",
icons: [
{
src: "/android-chrome-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "/android-chrome-512x512.png",
sizes: "512x512",
type: "image/png",
},
],
theme_color: "#ffffff",
background_color: "#ffffff",
start_url: "https://snct-fes.info",
display: "standalone",
description: "未視感、視たことのない高専祭を。",
lang: "ja",
},
}),
mode === "analyze" &&
visualizer({
open: true,
filename: "dist/stats.html",
gzipSize: true,
brotliSize: true,
}),
compress({ algorithm: "brotliCompress", ext: ".br" }),
tsconfig(),
],
test: {
globals: true,
environment: "happy-dom",
setupFiles: "./test/setup.ts",
},
};
});