~starkingdoms/starkingdoms

ref: 7a460d3cb9e24fdecd3c4ca8f79758071b1c6afc starkingdoms/starkingdoms-client/vite.config.ts -rw-r--r-- 475 bytes
7a460d3c — core remove old builder dockerfile, move new ones into folder 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { defineConfig } from "vite";
import * as child from "child_process";

const commitHash = child
  .execSync("git describe --no-match --always --abbrev=8 --dirty")
  .toString()
  .trim();

export default defineConfig({
  plugins: [],
  define: {
    APP_VERSION: JSON.stringify(process.env.npm_package_version),
    COMMIT_HASH: JSON.stringify(commitHash),
  },
  build: {
    target: ["chrome89", "edge89", "firefox89", "safari15"],
    cssCodeSplit: false,
  },
});