使用vue-cli3開發vue項目並上傳到github,使用github page展現出現白屏的解決方案

在vue.config.js中配置publicPath,其中「<REPO>」是分支名,後面加上資源所在路徑:html

module.exports = {
    publicPath: process.env.NODE_ENV === 'production' ?
        '/<REPO>/dist/' :
        '/'
}

參考文檔: https://cli.vuejs.org/zh/guide/deployment.html#github-pagesvue

相關文章
相關標籤/搜索