feat: update port configuration for Astro application
This commit is contained in:
@ -35,4 +35,4 @@ ENV __VITE_ADDITIONAL_SERVER_ALLOWED_HOSTS=jleibl.net
|
|||||||
ENV __VITE_ADDITIONAL_PREVIEW_ALLOWED_HOSTS=jleibl.net
|
ENV __VITE_ADDITIONAL_PREVIEW_ALLOWED_HOSTS=jleibl.net
|
||||||
|
|
||||||
# Start the Astro application
|
# Start the Astro application
|
||||||
CMD ["bun", "preview", "--host"]
|
CMD ["bun", "preview", "--port", "4321"]
|
||||||
|
@ -18,6 +18,12 @@ export default defineConfig({
|
|||||||
],
|
],
|
||||||
|
|
||||||
vite: {
|
vite: {
|
||||||
plugins: [tailwindcss()]
|
plugins: [tailwindcss()],
|
||||||
|
server: {
|
||||||
|
port: 4321
|
||||||
|
},
|
||||||
|
preview: {
|
||||||
|
port: 4321
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
Reference in New Issue
Block a user