后端集成

    或者你可以按照如下步骤手动配置:

    1. 在你的 Vite 配置中配置入口文件和启用创建 :

      1. // 添加到你应用入口文件的开头
      2. import 'vite/dynamic-import-polyfill'
    2. 在开发环境中,在服务器的 HTML 模板中注入以下内容(用正在运行的本地 URL 替换 http://localhost:3000):

      还要确保服务器配置为提供 Vite 工作目录中的静态资源,否则图片等资源将无法正确加载。

      1. RefreshRuntime.injectIntoGlobalHook(window)
      2. window.$RefreshReg$ = () => {}
      3. window.$RefreshSig$ = () => (type) => type
      4. window.__vite_plugin_react_preamble_installed__ = true
      5. </script>