v0.1.0 — Repositorio público

This commit is contained in:
RGJorge
2026-05-11 03:02:14 +00:00
parent 77da10bfde
commit 396873ae87
16 changed files with 56 additions and 1341 deletions
+5
View File
@@ -1,6 +1,7 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
import pkg from "./package.json" with { type: "json" };
export default defineConfig({
plugins: [react(), tailwindcss()],
@@ -9,6 +10,10 @@ export default defineConfig({
outDir: "../../dist",
emptyOutDir: true,
},
define: {
// Inject app version from package.json so UI never drifts from the source of truth
__APP_VERSION__: JSON.stringify(pkg.version),
},
server: {
port: 9420,
host: "0.0.0.0",