feat(config): add preview allowedHosts configuration

This commit is contained in:
2025-03-09 14:09:59 +01:00
parent eb126dc6f2
commit 5634704a3f

View File

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