可以使用Create React App,但是使用Vite…
我尝试添加相对路径,但仍然得到CORS策略错误。我添加了"首页";;在包中。Json文件,但仍然不能工作。
我能够使用一个名为viteSingleFile
的单一文件构建插件来做到这一点。只需将其添加到vite.config.js|ts
文件中的插件:
export default defineConfig({
plugins: [react(), viteSingleFile()]
})