In a create-next-app
Next.js application, I want to move the pages
folder in the root directory to a src
folder. I added a jsconfig.json
with the code (below), however now I get the error message "404 | This page could not be found." Anyone have any insight? (Sorry beginner to web development)
{
"compilerOptions": {
"baseUrl": "src"
}
}