Skip to content
Snippets Groups Projects
Unverified Commit dccad902 authored by Neil's avatar Neil Committed by GitHub
Browse files

vite host regression fix (#2217)

add host to vite config
parent b477f7c2
No related branches found
No related tags found
No related merge requests found
...@@ -130,6 +130,7 @@ export default defineConfig(async ({ mode }) => { ...@@ -130,6 +130,7 @@ export default defineConfig(async ({ mode }) => {
}, },
}, },
server: { server: {
host: true,
headers: mode === 'development' ? devHeaders : undefined, headers: mode === 'development' ? devHeaders : undefined,
port: +env.PORT || 5173, port: +env.PORT || 5173,
open: env.BROWSER open: env.BROWSER
......
---
category: Bugfix
authors: [carkom]
---
vite hosting regression fix. adds hosting on network back onto vite.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment