27 lines
561 B
TypeScript
27 lines
561 B
TypeScript
/// <reference types="vitest/config" />
|
|
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: "0.0.0.0",
|
|
port: 4173,
|
|
strictPort: true,
|
|
allowedHosts: ["iwanttoheal.phenomrom.com"],
|
|
proxy: {
|
|
"/api": "http://127.0.0.1:4174",
|
|
},
|
|
},
|
|
preview: {
|
|
host: "0.0.0.0",
|
|
port: 4173,
|
|
strictPort: true,
|
|
allowedHosts: ["iwanttoheal.phenomrom.com"],
|
|
},
|
|
test: {
|
|
environment: "node",
|
|
include: ["src/**/*.test.ts"],
|
|
},
|
|
});
|