카테고리 없음

vite index.html -> main.html 이름 변경하기

FaustK 2022. 12. 21. 14:05

nuxt2 뿐만 아니라 vue3 vite 에서도 index.html 을 main.html 등으로 (main 말고 다른 이름도 상관없음) 파일 이름을 변경해야 했다.

index.html 파일의 이름을 main.html (예시) 로 변경한 후 vite.config.ts 에서 변경해주면 된다.

...
server: {
    open: "/main.html",
 },
build: {
    rollupOptions: {
      input: {
        app: "./main.html"
      },
    }
  },
  ...

 

https://stackoverflow.com/questions/71295772/in-vite-is-there-a-way-to-update-the-root-html-name-from-index-html

 

In vite, is there a way to update the root html name from index.html

I'm trying to update an existing project to vite but i read in the docs Vite expects an index.html file to work from. Is there anyway to specify another file name from which vite should build? in m...

stackoverflow.com