med-notes/reader/vite.config.js
2025-04-06 00:10:19 +00:00

17 lines
425 B
JavaScript

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",
"42b7-88-18-106-198.ngrok-free.app",
],
},
});