forked from opencast/opencast-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
41 lines (39 loc) · 1.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
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import svgr from "vite-plugin-svgr";
import eslint from "vite-plugin-eslint";
import child from "child_process";
const commitHash = child.execSync("git rev-parse HEAD").toString().trim();
// https://vitejs.dev/config/
export default defineConfig(() => {
return {
base: process.env.PUBLIC_URL || "",
server: {
open: true,
},
build: {
outDir: "build",
},
plugins: [
react({
jsxImportSource: "@emotion/react",
babel: {
plugins: ["@emotion/babel-plugin"],
},
}),
// svgr options: https://react-svgr.com/docs/options/
svgr({ svgrOptions: { } }),
eslint(),
],
// Workaround, see https://github.com/vitejs/vite/discussions/5912#discussioncomment-6115736
define: {
global: "globalThis",
'import.meta.env.VITE_GIT_COMMIT_HASH': JSON.stringify(commitHash),
'import.meta.env.VITE_APP_BUILD_DATE': JSON.stringify(new Date().toISOString()),
},
test: {
globals: true,
environment: "jsdom",
},
};
});