3

我一直在按照此处找到的教程向我的 vuepress 站点添加身份验证。在开发模式下运行时,这一切都很好,但是当我尝试构建我的应用程序时,我收到以下错误:

wait Rendering static HTML...
Rendering page: /error Error rendering /: false
undefined
ReferenceError: window is not defined
 at Object.module.exports.Op (node_modules/@okta/okta-vue/dist/okta- 
vue.js:1:222)
at __webpack_require__ (webpack/bootstrap:25:0)
at Module.<anonymous> (server-bundle.js:4649:16)

这使我无法部署我的网站。这个问题是在我包含 Okta vue sdk 之后开始的。

我的 enhanceApp.js 如下:

import Auth from "@okta/okta-vue";
import { oktaConfig } from "./oktaConfig";

export default ({ Vue, options, router, siteData }) => {
  Vue.use(Auth, oktaConfig);
  router.beforeEach(async (to, from, next) => {
    const auth = await Vue.prototype.$auth.isAuthenticated();
    if (!auth && to.path !== "/implicit/callback/") {
      Vue.prototype.$auth.loginRedirect(to.path);
    } else {
      next();
    }
  });
};
4

0 回答 0