-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
47 lines (38 loc) · 1.28 KB
/
vite.config.js
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
/* eslint-disable no-undef */
import { defineConfig, loadEnv } from "vite";
import react from "@vitejs/plugin-react";
import * as child from "child_process";
// Load the value of version from package.json
import { version } from "./package.json";
const commitDate = child
.execSync("git log -1 --format=%cI")
.toString()
.trimEnd();
const branchName = child
.execSync("git rev-parse --abbrev-ref HEAD")
.toString()
.trimEnd();
const commitHash = child.execSync("git rev-parse HEAD").toString().trimEnd();
const lastCommitMessage = child
.execSync("git show -s --format=%s")
.toString()
.trimEnd();
// Override the process.env
process.env.VITE_GIT_COMMIT_DATE = commitDate;
process.env.VITE_GIT_BRANCH_NAME = branchName;
process.env.VITE_GIT_COMMIT_HASH = commitHash;
process.env.VITE_GIT_LAST_COMMIT_MESSAGE = lastCommitMessage;
export default ({ mode }) => {
const loadedEnv = { ...loadEnv(mode, process.cwd()) };
// loadEnv vitejs function is bugged in dev mode; it doesn't reload the values from the .env file
process.env.VITE_APP_VERSION = loadedEnv.VITE_APP_VERSION
? loadedEnv.VITE_APP_VERSION
: `v${version}`;
return defineConfig({
plugins: [react()],
});
};
// // https://vitejs.dev/config/
// export default defineConfig({
// plugins: [react()],
// });