config: enable all hosts in Vite dev server configuration

This commit is contained in:
Chris Parsons 2025-10-14 21:46:55 -07:00
parent 1b790ed5bc
commit 8c73f7172a

View file

@ -12,4 +12,7 @@ export default defineConfig(({ isSsrBuild }) => ({
: undefined, : undefined,
}, },
plugins: [tailwindcss(), reactRouter(), tsconfigPaths()], plugins: [tailwindcss(), reactRouter(), tsconfigPaths()],
server: {
allowedHosts: true,
},
})); }));