mirror of
https://github.com/Awesome-Technologies/synapse-admin.git
synced 2024-10-30 22:45:15 +03:00
f4ea63c8f4
Change-Id: I0d46dc57df025538379a2f0786d3e972c56dd248
15 lines
346 B
JavaScript
15 lines
346 B
JavaScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { vitePluginVersionMark } from "vite-plugin-version-mark";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
vitePluginVersionMark({
|
|
command: "git describe --tags",
|
|
ifMeta: true,
|
|
ifLog: true,
|
|
ifGlobal: true,
|
|
}),
|
|
],
|
|
});
|