This commit is contained in:
2025-04-05 21:22:17 +00:00
parent a8fc262398
commit 695e6cce01
112 changed files with 3464 additions and 0 deletions

15
reader/vite.config.js Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
allowedHosts: [
"personal.orb.local",
"b8b0-88-18-106-198.ngrok-free.app",
"1bea-88-18-106-198.ngrok-free.app",
],
},
});