本文主要是介绍vue项目打包及部署(无后端),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.拿到build后的文件dist
2.在dist同级目录下新建app.js文件
3.安装express
npm install express --save
4.app.js内容如下
var express = require('express')
var http = require('http')
var app = express()
app.use(express.static('./dist'))
app.use(function (req, res, next) {res.sendfile('./dist/index.html') //路径根据自己文件配置
})
var httpsServer = http.createServer(app)
httpsServer.listen(5001, function () {var host = httpsServer.address().addressvar port = httpsServer.address().port
})
5.在需要部署的主机中装上node环境然后执行命令
//执行app.js,即可访问localhost://5001
node app.js
这篇关于vue项目打包及部署(无后端)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!