feat: add allowed hosts to Vite server configuration

This commit is contained in:
2025-03-09 14:07:46 +01:00
parent 67400ee308
commit eb126dc6f2

View File

@ -18,6 +18,9 @@ export default defineConfig({
],
vite: {
plugins: [tailwindcss()]
plugins: [tailwindcss()],
server: {
allowedHosts: ['jleibl.net']
}
}
});