-
-
Notifications
You must be signed in to change notification settings - Fork 168
/
vite.config.ts
86 lines (83 loc) · 2.46 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import legacy from "@vitejs/plugin-legacy";
import react from "@vitejs/plugin-react";
import { ManifestOptions, VitePWA } from "vite-plugin-pwa";
import svgr from "vite-plugin-svgr";
import { defineConfig } from "vitest/config";
// @ts-expect-error -- Waiting for stable typescript eslint config
// https://eslint.org/docs/latest/use/configure/configuration-files#typescript-configuration-files
import compilerOptions from "./compilerOptions.js";
import manifest from "./manifest.json";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react({
babel: {
plugins: [["babel-plugin-react-compiler", compilerOptions]],
},
}),
svgr(),
VitePWA({
devOptions: {
enabled: true,
},
registerType: "prompt",
manifestFilename: "manifest.json",
manifest: manifest as ManifestOptions, // https://github.com/microsoft/TypeScript/issues/32063
workbox: {
maximumFileSizeToCacheInBytes: 2097152 * 2,
runtimeCaching: [
{
handler: "StaleWhileRevalidate",
urlPattern: ({ url }) => url.pathname === "/_config",
method: "GET",
},
],
},
}),
legacy({
// es.array.at: Voyager code iOS 15.2
// es.object.has-own: ReactMarkdown iOS 15.2
modernPolyfills: ["es.array.at", "es.object.has-own"],
}),
],
envPrefix: [
"VITE_",
"BUILD_FOSS_ONLY",
// Keep these explicit. Do not simplify to `APP_`.
"APP_BUILD",
"APP_VERSION",
"APP_GIT_REF",
],
// TODO: Outdated clients trying to access stale codesplit js chucks
// break. This breaks iOS transitions.
// Put everything into one chunk for now.
build: {
chunkSizeWarningLimit: 5_000,
rollupOptions: {
output: {
manualChunks: () => "index.js",
// ---- Reproducible builds (f-droid) ----
...(process.env.CI_PLATFORM === "android" ||
process.env.CI_PLATFORM === "ios"
? {
entryFileNames: `[name].js`,
chunkFileNames: `[name].js`,
assetFileNames: `[name].[ext]`,
}
: {}),
},
},
},
esbuild: {
logOverride: { "unsupported-css-nesting": "silent" },
},
test: {
exclude: ["**/e2e/**", "**/node_modules/**"],
globals: true,
environment: "jsdom",
setupFiles: "./src/setupTests.ts",
},
optimizeDeps: {
exclude: ["mdast-util-gfm-autolink-literal-lemmy", "remark-lemmy-spoiler"],
},
});