vue-cli3 使用子目錄部署問題

在使用 vue-cli3 build的時候,使用非子目錄須要在 vue.config.js 中添加以下代碼:html

module.exports = {
  baseUrl: process.env.NODE_ENV === 'production' ? '/dist/' : '/',
}

可是build完後,放在nginx服務下,會看到以下報錯,頁面也顯示 no-script 的內容vue

[Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.

網上找了不少,並無找到答案。後來發現 vue-router 是用了 history 模式,可是 nginx 並無添加相應的配置便會出現這個問題。因此,以下解決方案:
1.變動生產環境配置,使得支持 history 模式。這裏只須要修改 nginx 的配置,把 404 指向 index.html 便可。
2.不在使用history模式nginx

相關文章
相關標籤/搜索