理解Vite的文件结构:为什么index.html应该放在根目录
原文英文,约200词,阅读约需1分钟。发表于: 。When working with Vite, a common gotcha is the location of the index.html file. Unlike traditional build tools like Webpack, Vite requires your index.html to reside in the project root directory,...
在使用Vite时,index.html必须放在项目根目录,而非public目录,否则会出现HTTP 404错误。Vite将index.html作为入口点,以优化和打包项目。基本项目结构应为:my-project/下包含index.html、src/和public/文件夹。