哪些文件需要将Vue App部署到FTP服务器?

问题描述 投票:0回答:1

我需要将Vue应用程序部署到FTP服务器。我进行“ npm run build”,现在我看到dist文件夹,其中包含文件和文件夹:

-css (folder)
-img (folder)
-js (folder)
-index.html (file)
-robots.txt (text file i don't know what is this)
-service-worker.js (this is because i deploy to heroku)

我已将此文件和文件夹压缩并命名为production.zip,此zip部署到了我的FTP服务器。现在,当我转到自己的网址时,我只会看到我的文件和文件夹,而当尝试转到index.html时,只会下载该文件。我的错误在哪里?

vue.js deployment server ftp
1个回答
0
投票

您无法将节点应用程序部署到FTP服务器,您必须先安装一个nodejs服务器才能使用npm运行命令,希望对您有所帮助。

© www.soinside.com 2019 - 2024. All rights reserved.