UNPKG

joshdevvite-plugin

Version:

Vite plugin for PHP MVC frameworks with hot reload and asset management created by JoshDev.

9 lines (7 loc) 269 B
export function resolveDevServerUrl(config) { const { server } = config; const protocol = server.https ? "https" : "http"; const host = server.host || "localhost"; const port = server.port || 5173; return `${protocol}://${host}:${port}`; }