ultra icon indicating copy to clipboard operation
ultra copied to clipboard

wrong entry into built importMap.server.json

Open dagda1 opened this issue 1 year ago • 0 comments

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:

{
  "imports": {
    "./server.js": "./server.js",

Manually changing it to this fixes it:

{
  "imports": {
    "./server.tsx": "./server.js",

dagda1 avatar Sep 03 '22 14:09 dagda1