add compile time defines
This commit is contained in:
parent
3c7cf9918a
commit
659304ebd2
|
@ -1,8 +1,13 @@
|
||||||
import react from '@vitejs/plugin-react'
|
import react from '@vitejs/plugin-react'
|
||||||
|
import * as child from 'child_process';
|
||||||
|
|
||||||
/** @type {import('vite').UserConfig} */
|
/** @type {import('vite').UserConfig} */
|
||||||
export default {
|
export default {
|
||||||
plugins: [
|
plugins: [
|
||||||
react()
|
react()
|
||||||
],
|
],
|
||||||
|
define: {
|
||||||
|
BUILD_TIME: new Date(),
|
||||||
|
// LAST_COMMIT: JSON.stringify(child.execSync("git rev-parse --short HEAD"))
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue