Update vite.config.js

This commit is contained in:
peaklabs-dev
2024-11-11 12:13:15 +01:00
parent 7ead0e597c
commit ee049d6525

View File

@@ -6,23 +6,11 @@ export default defineConfig({
server: {
watch: {
ignored: ['**/_data/**'],
},
},
host: "0.0.0.0",
hmr: process.env.GITPOD_WORKSPACE_URL
? {
// Due to port forwarding, we have to replace
// 'https' with the forwarded port, as this
// is the URI created by GitPod.
host: process.env.GITPOD_WORKSPACE_URL.replace(
"https://",
"5173-"
),
protocol: "wss",
clientPort: 443,
}
: {
host: process.env.VITE_HOST,
},
hmr: {
host: process.env.VITE_HOST,
},
},
plugins: [
laravel({