initial backend

This commit is contained in:
2025-09-05 13:40:15 +02:00
parent ab588833b6
commit 48c1811c30
16 changed files with 210 additions and 7 deletions

View File

@@ -1,8 +1,9 @@
import { defineConfig } from "vite";
import solidPlugin from "vite-plugin-solid";
import { env } from "process";
//test
const target = env.BACKEND_URL ?? "https://localhost:5001";
const target = env.BACKEND_URL ?? "http://localhost:5084/"; //"https://localhost:7192/";
console.log("vite backend:", target);
export default defineConfig({
plugins: [solidPlugin()],