0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Nuxt GitHub Pages】pages/hoge.vueでexample.com/hoge/←スラッシュが後につく問題【autoSubfolderIndex】

Posted at

nuxt.config.tsを下記に修正しよう。SSGでexample.com/hoge/index.htmlではなくexample.com/hoge.htmlが生成されるよ

nuxt.config.ts
export default defineNuxtConfig({
  nitro: {
    prerender: {
      autoSubfolderIndex: false
    }
  }
})

folderのfは小文字にしてね!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?