feat: add Vite configuration file for server settings

This commit is contained in:
2025-03-09 14:22:38 +01:00
parent f3e5aaa2f4
commit fc90fcdff5

12
vite.config.js Normal file
View File

@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
export default defineConfig({
server: {
allowedHosts: 'jleibl.net',
port: 4321
},
preview: {
allowedHosts: 'jleibl.net',
port: 4321
}
})