-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
72 lines (68 loc) · 1.8 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
import react from "@vitejs/plugin-react"
import { visualizer } from "rollup-plugin-visualizer"
import { defineConfig, loadEnv } from "vite"
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd(), "VITE_APP")
// Optional: Populate NODE_ENV with the current mode (development/production)
env.NODE_ENV = mode
const envWithProcessPrefix = {
"process.env": `${JSON.stringify(env)}`,
__APP_ENV__: JSON.stringify(env.APP_ENV),
}
return {
build: {
// Relative to the root
outDir: "./dist",
sourcemap: true, // Source map generation must be turned on
target: "es2022",
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes("node_modules")) {
if (id.includes("@supabase") || id.includes("@chakra-ui")) {
const libraryPath = id.split("node_modules/")[1]
return `${libraryPath.split("/")[0]}/${libraryPath.split("/")[1]}`
}
return id.split("node_modules/")[1].split("/")[0]
}
return null
},
},
},
},
esbuild: {
target: "es2022",
legalComments: "eof",
},
css: {
devSourcemap: true,
},
optimizeDeps: {
esbuildOptions: {
target: "es2022",
},
},
test: {
environment: "jsdom",
setupFiles: ["./src/setupTests.ts"],
testMatch: ["./tests/*.test.ts?(x)"],
globals: true,
deps: {
optimizer: {
ssr: {
include: ["@epicbrief/shared"],
},
},
},
},
plugins: [
visualizer(),
// …
react({
// Use React plugin in all *.jsx and *.tsx files
include: "**/*.{js,jsx,tsx}",
}),
],
define: envWithProcessPrefix,
}
})