What version of Next.js are you using?
v10.0.7-canary.7
What version of Node.js are you using?
v15.7.0
What browser are you using?
Chrome
What operating system are you using?
Linux 5.4
How are you deploying your application?
next dev (development issue)
Describe the Bug
when using + in a url (filename like /pages/hello+world.js) in development mode, the page will refresh every few seconds as if i was changing the file, even if im not.
Expected Behavior
either reject the invalid character + (they technically arent allowed in urls, but work fine), or not constantly refresh the page
To Reproduce
- project prep
yarn create next-app test
cd test
cp pages/index.js pages/hello+world.js
yarn dev
- then open localhost:3000/hello+world
- open developer tools, enable preserve log, and watch the page reload a ton