diff --git a/astro.config.mjs b/astro.config.mjs index 68029c1..3629f7d 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -3,11 +3,14 @@ import tailwind from '@astrojs/tailwind'; import node from '@astrojs/node'; export default defineConfig({ - srcDir: 'src', output: 'server', adapter: node({ mode: "standalone" }), + server: { + host: true, + port: 4321, + }, integrations: [ tailwind({ applyBaseStyles: true diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index ee8d12f..c183807 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -10,7 +10,7 @@ services: env_file: - .env ports: - - "4000:3000" + - "4000:4321" networks: - n8n_default