-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-bake does not work #5
Comments
Care to share your |
This is a peculiar situation: the The problem here, however, is that since we're processing the root URL, that file amounts to This is actually a more general problem though; if, for example, you were to have, say, the following routes:
Note that both routes default to producing JSON output, so the
But that would require It works for HTML responses, because these are handled differently: if we add templates to those routes so that they render HTML, we get the following files:
Now We could do the same for JSON responses, probably, but then we'd have to add a suitable additional default document to the For now, I think the best workaround is to just not have JSON routes that collide with directories; an approach that works well for anything other than |
The text was updated successfully, but these errors were encountered: