-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
35 lines (34 loc) · 902 Bytes
/
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
import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react-swc";
import tsconfigPaths from "vite-tsconfig-paths";
import legacy from "@vitejs/plugin-legacy";
import { resolve } from "path";
// https://vitejs.dev/config/
export default defineConfig({
test: {
environment: "jsdom",
},
build: {
rollupOptions: {
input: {
main: resolve(__dirname, "index.html"),
ja: resolve(__dirname, "ja/index.html"),
},
},
},
plugins: [
react({
plugins: [
["@swc-jotai/react-refresh", {}],
["@swc-jotai/debug-label", {}],
],
}),
tsconfigPaths(),
// A little silly but added to support older browsers, especially because of
// using Array.toSpliced() which is an ES2023 feature.
legacy({ targets: ["defaults", "not IE 11"] }),
],
worker: {
plugins: () => [tsconfigPaths()],
},
});