How to customize the file name of the first page compiled by nuxt.js

problem description

how to customize the nuxt.js compiled home page file name? now the home page file generated when I run npm run build to build the project in the project directory is not index.html, but 200.html, and the relevant configuration is not found in the document, which boss has the solution?

Apr.10,2022

No one answered, so I answered my own question, tried it, and found that the configuration in the document was nuxt.config.js .

https://zh.nuxtjs.org/api/con...

  generate: {
    fallback: 'index.html'
  }
Menu