Files
Hoya26/frontend/vite.config.js
2026-01-25 17:36:15 +00:00

38 lines
816 B
JavaScript

import { defineConfig } from "vite";
import { sveltekit } from "@sveltejs/kit/vite";
import tailwindcss from '@tailwindcss/vite'
const host = process.env.TAURI_DEV_HOST;
// Backend API URL for development proxy
const API_TARGET = process.env.API_URL || 'http://localhost:5000';
export default defineConfig(async () => ({
plugins: [sveltekit(), tailwindcss()],
clearScreen: false,
server: {
port: 1420,
strictPort: true,
host: host || false,
hmr: host
? {
protocol: "ws",
host,
port: 1421,
}
: undefined,
watch: {
ignored: ["**/src-tauri/**"],
},
// Proxy API requests to backend during development
proxy: {
'/api': {
target: API_TARGET,
changeOrigin: true,
secure: false,
}
}
},
}));