nuxt3打包部署build的端口port修改方案,官方方案是什么样的?
打包后不会再读取环境变量,Windows 环境set PORT=8888,Linux export PORT=8888,先解决环境变量问题。PM2 可以配置ecosystem.config.js,module.exports = { apps: [ { name: 'WEBSITE', exec_mode: 'cluster', instances: 'max', script: './server/index.mjs', env: { 'PORT': 8888 }, } ],}
赞0
踩0