feat: update port configuration for Astro application

This commit is contained in:
2025-03-09 14:31:57 +01:00
parent ab1e92ae54
commit 72f2f1c07d
2 changed files with 8 additions and 2 deletions

View File

@ -18,6 +18,12 @@ export default defineConfig({
],
vite: {
plugins: [tailwindcss()]
plugins: [tailwindcss()],
server: {
port: 4321
},
preview: {
port: 4321
}
}
});