Hello World...

nuxt2 build 시 index.html -> main.html 로 변경되게 하기 본문

카테고리 없음

nuxt2 build 시 index.html -> main.html 로 변경되게 하기

FaustK 2022. 12. 21. 14:00

nuxt2 빌드시, dist 폴더에 index.html 대신 main.html 이 생성되도록 하고 싶었다.(이름만 변경)

이름만 변경되는 것은 아니고 main.html 이 생성되는 방식으로 해결할 수 있었다.

nuxt.config.js 에 generate 속성을 추가하면 된다.

 ...,
 
 generate: {
   fallback: 'main.html'
 },
 
 ...

 

 

https://github.com/nuxt/nuxt.js/issues/4686

https://github.com/nuxt/nuxt.js/issues/4686#issuecomment-452597580

 

how can i customize index file name · Issue #4686 · nuxt/nuxt.js

how can i customize index file name as index.html instead of 200.html? can someone have a good idea? This question is available on Nuxt community (#c8404)

github.com

 

Comments