美文网首页
Uncaught ReferenceError: process

Uncaught ReferenceError: process

作者: 梁帆 | 来源:发表于2022-06-29 11:56 被阅读0次

    定位到router文件夹的index.ts末尾:

    const router = createRouter({
      history: createWebHistory(process.env.BASE_URL),
      //  mode: process.env.VUE_APP_ROUTER_MODE_HISTORY === 'true' ? 'history' : 'hash',
      routes
    })
    

    process.env改成import.meta.env
    因为vite中把这个旧版本特性删除了,所以会出错。

    相关文章

      网友评论

          本文标题:Uncaught ReferenceError: process

          本文链接:https://www.haomeiwen.com/subject/rnmtbrtx.html