Replies: 2 comments 5 replies
-
|
Can you open the dev tools and look/share the response body and headers? |
Beta Was this translation helpful? Give feedback.
4 replies
-
|
Reported here adonisjs/http-server#45 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Currently happening with both Chrome (Version 91.0.4472.114) and Firefox (89.0.2), MacOS.
When refreshing a page, or clicking a link that would load the same path that the page is currently on, when the page "loads", the content disappears.
Refreshing works using Safari, but clicking the link shown below downloads an empty file called test.
Screen.Recording.2021-07-10.at.12.41.37.PM.mov
Doing a hard refresh (cmd + shift + r) reloads with the content.
Relevant files:
{ "name": "_", "version": "1.0.0", "private": true, "scripts": { "build": "node ace build --production", "start": "node server.js", "dev": "node ace serve --watch", "lint": "eslint . --ext=.ts", "format": "prettier --write .", "tests": "node -r @adonisjs/assembler/build/register japaFile.ts" }, "devDependencies": { "@adonisjs/assembler": "^5.3.2", "adonis-preset-ts": "^1.1.0", "eslint": "^7.17.0", "eslint-config-prettier": "^7.1.0", "eslint-plugin-adonis": "^1.0.15", "eslint-plugin-prettier": "^3.3.1", "execa": "^5.0.0", "get-port": "^5.1.1", "japa": "^3.1.1", "pino-pretty": "^4.3.0", "prettier": "^2.2.1", "typescript": "^4.1.3", "youch": "^2.1.1", "youch-terminal": "^1.0.1" }, "dependencies": { "@adonisjs/auth": "^8.0.7", "@adonisjs/core": "^5.1.9", "@adonisjs/lucid": "^15.0.3", "@adonisjs/mail": "^7.2.2", "@adonisjs/redis": "^5.0.9", "@adonisjs/repl": "^3.1.4", "@adonisjs/session": "^6.1.0", "@adonisjs/shield": "^7.0.4", "@adonisjs/view": "^6.0.4", "axios": "^0.21.1", "luxon": "^1.25.0", "pg": "^8.5.1", "phc-bcrypt": "^1.0.4", "proxy-addr": "^2.0.6", "reflect-metadata": "^0.1.13", "source-map-support": "^0.5.19", "supermemo": "^2.0.17" } }Also, I recently followed the steps with the project to upgrade from v5 preview to the release
Update: On the requests where the page is blank, the server as actually returning a completely empty response
Update 2: Actually, it doesn't matter if a link is referring to the current page or not - following a link will go to that path but no content is actually returned
Beta Was this translation helpful? Give feedback.
All reactions