mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2025-07-12 08:46:54 +00:00
15 lines
346 B
TypeScript
15 lines
346 B
TypeScript
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,
|
|
}),
|
|
],
|
|
});
|