We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
_error.tsx
0.1.26
npm create hono@latest
x-basic
vite.config.ts
bun run build
index.html is output to dist/.
dist/
dist ├── .vite ├── articles ├── static ├── _routes.json ├── _worker.js ├── favicon.ico └── index.html
index.html is not output to dist/. No error message will be displayed.
dist ├── .vite ├── articles ├── static ├── _routes.json ├── _worker.js └── favicon.ico
error.tsx
honox/src/server/server.ts
Line 192 in 034cd20
The text was updated successfully, but these errors were encountered:
Maybe it has something to do with this issue: #234
Sorry, something went wrong.
COMPOSED_HANDLER
hono
No branches or pull requests
What version of HonoX are you using?
0.1.26
What steps can reproduce the bug?
npm create hono@latest
x-basic
vite.config.ts
as in https://github.com/honojs/honox?tab=readme-ov-file#ssg---static-site-generationbun run build
What is the expected behavior?
index.html is output to
dist/
.What do you see instead?
index.html is not output to
dist/
. No error message will be displayed.Additional information
error.tsx
, ssg build is successfully performed and index.html is generated_error.tsx
file generated by the honox template is treated as a special file in hono because it's used for creating custom error handlers.honox/src/server/server.ts
Line 192 in 034cd20
I suspect that this might be affecting the SSG build process.
The text was updated successfully, but these errors were encountered: