Extra NextJS routes, not working, with sample provided

huangapple go评论53阅读模式
英文:

Extra NextJS routes, not working, with sample provided

问题

I have a NextJS app on Firebase with routing problems.
我在Firebase上有一个使用NextJS的应用程序,存在路由问题。

I already made a post to explain the issue here: https://stackoverflow.com/questions/76241124/extra-nextjs-routes-not-working-on-the-server-side
我已经在这里发布了一个帖子来解释这个问题:https://stackoverflow.com/questions/76241124/extra-nextjs-routes-not-working-on-the-server-side

In this one I give a sample app building procedure to reproduce the issue; so that some NextJS experts can let me know where I am doing something wrong or missing some important detail.
在这个帖子中,我提供了一个示例应用程序构建过程,以重现这个问题;这样一些NextJS专家可以告诉我在哪里出错了或者漏掉了一些重要的细节。

Below is a detailed description of how I build a sample app to reproduce my problem. Anyone should be able to follow the same steps.
以下是我构建示例应用程序以重现我的问题的详细描述。任何人都应该能够按照相同的步骤操作。

This is what I do in the terminal:
这是我在终端中所做的:

At this point I edit the file next.config.js to make it look as follows:
在这一点上,我编辑了next.config.js文件,使其看起来如下:

Next I run the command:
接下来,我运行以下命令:

At this point I edit the firebase.json file to make it look as follows:
在这一点上,我编辑了firebase.json文件,使其看起来如下:

Here I insert a directory called Special in the app directory; and inside it I put a file called page.tsx.
在这里,我在app目录中插入一个名为Special的目录;在其中,我放置了一个名为page.tsx的文件。

Next I run the command:
接下来,我运行以下命令:

Again using the browser I can see:
再次使用浏览器,我可以看到:

I was expecting the same result as for: http://localhost:3000/Special
我期望的结果与:http://localhost:3000/Special 相同。

What happened ?
发生了什么事?

英文:

I have a NextJS app on Firebase with routing problems.
I already made a post to explain the issue here: https://stackoverflow.com/questions/76241124/extra-nextjs-routes-not-working-on-the-server-side

In this one I give a sample app building procedure to reproduce the issue; so that some NextJS experts can let me know where I am doing something wrong or missing some important detail.

Below is a detailed description of how I build a sample app to reproduce my problem.
Anyone should be able to follow the same steps.

This is what I do in the terminal:

me@MyMac % npm --version
8.15.0
me@MyMac % firebase --version
12.0.0

me@MyMac % npx create-next-app@latest
✔ What is your project named? … sampleapp
✔ Would you like to use TypeScript with this project? … Yes
✔ Would you like to use ESLint with this project? … Yes
✔ Would you like to use Tailwind CSS with this project? … Yes
✔ Would you like to use `src/` directory with this project? … No
✔ Use App Router (recommended)? … Yes
✔ Would you like to customize the default import alias? … No
Creating a new Next.js app in /Users/me/sampleapp.

Using npm.

Initializing project with template: app-tw 


Installing dependencies:
- react
- react-dom
- next
- typescript
- @types/react
- @types/node
- @types/react-dom
- tailwindcss
- postcss
- autoprefixer
- eslint
- eslint-config-next


added 352 packages, and audited 353 packages in 21s

136 packages are looking for funding
run `npm fund` for details

found 0 vulnerabilities
Initialized a git repository.

Success! Created sampleapp at /Users/me/sampleapp

me@MyMac % cd sampleapp
me@MyMac sampleapp % 

At this point I edit the file next.config.js to make it look as follows:

me@MyMac sampleapp % cat next.config.js 
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
experimental: {
    appDir: true,
},
}

module.exports = nextConfig
me@MyMac sampleapp % 

Next I run the command:

me@MyMac sampleapp % firebase init hosting

    ######## #### ########  ######## ########     ###     ######  ########
    ##        ##  ##     ## ##       ##     ##  ##   ##  ##       ##
    ######    ##  ########  ######   ########  #########  ######  ######
    ##        ##  ##    ##  ##       ##     ## ##     ##       ## ##
    ##       #### ##     ## ######## ########  ##     ##  ######  ########

You're about to initialize a Firebase project in this directory:

/Users/me/sampleapp


=== Project Setup

First, let's associate this project directory with a Firebase project.
You can create multiple project aliases by running firebase use --add, 
but for now we'll just set up a default project.

? Please select an option: Use an existing project
? Select a default Firebase project for this directory: sampleproj-n2m3p4 (VicHugo)
i  Using project sampleproj-n2m3p4 (VicHugo)

=== Hosting Setup

Your public directory is the folder (relative to your project directory) that
will contain Hosting assets to be uploaded with firebase deploy. If you
have a build process for your assets, use your build's output directory.

? What do you want to use as your public directory? out
? Configure as a single-page app (rewrite all urls to /index.html)? No
? Set up automatic builds and deploys with GitHub? No
✔  Wrote out/404.html
✔  Wrote out/index.html

i  Writing configuration info to firebase.json...
i  Writing project information to .firebaserc...

✔  Firebase initialization complete!
me@MyMac sampleapp % 

At this point I edit the firebase.json file to make it look as follows:

me@MyMac sampleapp % cat firebase.json 
{
"hosting": {
    "public": "out",
    "site": "sampleapp",
    "ignore": [
    "firebase.json",
    "**/.*",
    "**/node_modules/**"
    ]
}
}
me@MyMac sampleapp % 

Here I insert a directory called Special in the app directory; and inside it I put a file called page.tsx.

This is how it looks:

me@MyMac sampleapp % cat app/Special/page.tsx 
export default function Page() {
  return <h1>Hello, Next.js!</h1>;
}
me@MyMac sampleapp % 

Next I run the command:

me@MyMac sampleapp % npm run dev                            

At this point using the browser I can see:

http://localhost:3000/

    displaying the Next.JS default sample page, as expected.

http://localhost:3000/Special 

    Hello, Next.js!

shows up in the browser also as expected.

Then I stop the local server in the terminal and run the commands:

    me@MyMac sampleapp % npm run build
    me@MyMac sampleapp % firebase deploy --only hosting

Again using the browser I can see:

https://sampleapp.web.app

    Next.JS default sample page. (as expected)

https://sampleapp.web.app/Special

    404 | This page could not be found. (not as I expected)

I was expecting the same result as for: http://localhost:3000/Special

What happened ?

答案1

得分: 1

To remove the .html extension in the urls, add the cleanUrls attribute in your firebase.json file. Check the code below.

"hosting": {
  // ...
  
  // Drops `.html` from the URLs
  "cleanUrls": true
}
英文:

To remove the .html extension in the urls, add the cleanUrls attribute in your firebase.json file. Check the code below.

"hosting": {
  // ...

  // Drops `.html` from the URLs
  "cleanUrls": true
}

huangapple
  • 本文由 发表于 2023年5月14日 13:07:20
  • 转载请务必保留本文链接:https://go.coder-hub.com/76245907.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定