Files
coolify/vite.config.js
Andras Bacsai 76030a30d4 chore(v5): archive V5 implementation and remove runtime integration
Move V5 source, migrations, UI, scripts, and tests into documentation, then remove V5 routes, models, jobs, configuration, dependencies, and application hooks.
2026-08-15 19:13:30 +02:00

52 lines
1.7 KiB
JavaScript

import { defineConfig, loadEnv } from "vite";
import laravel from "laravel-vite-plugin";
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd(), "");
// Prefer process.env so Docker Compose can override without writing .env.
// Set VITE_HOST to a browser-reachable hostname/IP when accessing the app
// from another device (LAN / Tailscale), e.g. VITE_HOST=100.75.155.70
const viteHost = (process.env.VITE_HOST || env.VITE_HOST || "localhost").trim();
const viteHmrHost = (
process.env.VITE_HMR_HOST ||
env.VITE_HMR_HOST ||
viteHost
).trim();
const vitePort = Number(process.env.VITE_PORT || env.VITE_PORT || 5173);
const viteProtocol = (
process.env.VITE_PROTOCOL ||
env.VITE_PROTOCOL ||
"http"
).trim();
return {
server: {
watch: {
ignored: ["**/dev_*_data/**", "**/storage/**"],
},
// Listen on all interfaces so Docker / remote clients can reach the dev server
host: "0.0.0.0",
port: vitePort,
strictPort: true,
allowedHosts: true,
// App (:8000) and Vite (:5173) are different origins; allow any host in dev
cors: true,
origin: `${viteProtocol}://${viteHost}:${vitePort}`,
hmr: {
host: viteHmrHost,
clientPort: vitePort,
protocol: viteProtocol === "https" ? "wss" : "ws",
},
},
plugins: [
laravel({
input: [
"resources/css/app.css",
"resources/js/app.js",
],
refresh: true,
}),
],
};
});