forked from kriasoft/react-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
83 lines (74 loc) · 2.1 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
/* SPDX-FileCopyrightText: 2014-present Kriasoft */
/* SPDX-License-Identifier: MIT */
import react from "@vitejs/plugin-react";
import envars from "envars";
import { resolve } from "node:path";
import { URL } from "node:url";
import { defineProject } from "vitest/config";
import { Config, EnvName } from "./core/config.js";
// The list of supported environments
const envNames: EnvName[] = ["prod", "test", "local"];
// Bootstrap client-side configuration from environment variables
const configs = envNames.map((envName): [EnvName, Config] => {
const envDir = resolve(__dirname, "../env");
const env = envars.config({ env: envName, cwd: envDir });
return [
envName,
{
app: {
env: envName,
name: env.APP_NAME,
origin: env.APP_ORIGIN,
hostname: new URL(env.APP_ORIGIN).hostname,
},
firebase: {
projectId: env.GOOGLE_CLOUD_PROJECT,
appId: env.FIREBASE_APP_ID,
apiKey: env.FIREBASE_API_KEY,
authDomain: env.FIREBASE_AUTH_DOMAIN,
measurementId: env.GA_MEASUREMENT_ID,
},
},
];
});
// Pass client-side configuration to the web app
// https://vitejs.dev/guide/env-and-mode.html#env-variables-and-modes
process.env.VITE_CONFIG = JSON.stringify(Object.fromEntries(configs));
/**
* Vite configuration
* https://vitejs.dev/config/
*/
export default defineProject({
cacheDir: `../.cache/vite-app`,
build: {
rollupOptions: {
output: {
manualChunks: {
firebase: ["firebase/analytics", "firebase/app", "firebase/auth"],
react: ["react", "react-dom", "react-router-dom", "recoil"],
},
},
},
},
plugins: [
// https://github.com/vitejs/vite/tree/main/packages/plugin-react
react({
jsxImportSource: "@emotion/react",
babel: {
plugins: ["@emotion/babel-plugin"],
},
}),
],
server: {
proxy: {
"/api": {
target: process.env.LOCAL_API_ORIGIN ?? process.env.API_ORIGIN,
changeOrigin: true,
},
},
},
test: {
...{ cache: { dir: "../.cache/vitest" } },
environment: "happy-dom",
},
});