Closed dagda1 closed 2 years ago
After running deno task build there should be an entry for the root file entry point server.tsx but instead of it having the .tsx extension it is .js:
deno task build
server.tsx
.tsx
.js
{ "imports": { "./server.js": "./server.js",
Manually changing it to this fixes it:
{ "imports": { "./server.tsx": "./server.js",
This will be fixed in the next beta release! Apologies for the delay
This is fixed in the latest beta release
After running
deno task build
there should be an entry for the root file entry pointserver.tsx
but instead of it having the.tsx
extension it is.js
:Manually changing it to this fixes it: