Vue构建了要上传的产品

时间:2018-10-02 08:32:43

标签: vue.js web-applications

我在使Vue中的网页构建在服务器上正常工作时遇到问题。我已经使用vue-build prod构建了产品。我使用vue init bootstrap-vue/webpack my-project构建了页面。

现在仅可见页脚。我已经上传了dist文件夹的内容。该页面是:http://thegraph.es/dist/

代码在这里:https://github.com/MGijon/Citython/tree/master/web

1 个答案:

答案 0 :(得分:0)

因为所有文件都指向根目录。 设置基本URL或将所有文件从dist文件夹移至根目录。

vue.config.js

module.exports = {
  baseUrl: './',
  //...
}