Phil Rognerud

Results 2 comments of Phil Rognerud

For those building [Astro.js](https://astro.build/) sites, this fixed it for me. `astro.config.mjs` ``` export default defineConfig({ adapter: netlify(), output: "server", server: { host: true, port: 3000 } }); ``` Run command:...