denoland / deno-astro-adapter

A Deno adapter for running Astro applications on the Deno runtime.
https://npm.im/@deno/astro-adapter
MIT License
84 stars 19 forks source link

Hybrid output not working #6

Closed raspo closed 8 months ago

raspo commented 1 year ago

I was trying to use this adapter with output set to hybrid.

export default defineConfig({
  output: 'hybrid',
  adapter: deno(),
});

This doesn't cause any errors; my console shows the message "Server running on port 8085"... but when I visit 0.0.0.0:8085 I get an empty 404.

I eventually figured out that changing output from hybrid to server fixed the issue.


Is there any plan to add support for hybrid mode? (I am willing to help) If not, maybe this should be mentioned in the readme, or the server could throw an error on startup.