我正在尝试将nodejs应用程序“ weather-app”部署到AWS ec2。它在我的本地主机中成功运行,但是当我将其部署到AWS时,它向我显示以下错误
无法在视图目录“ / home / ubuntu / weather-app / views”中查找视图“索引”
我尝试将视图修改为
const express = require('express');
const app = express();
app.use(express.static(__dirname + '/public'));
app.set('views', __dirname + '/views');
app.get('/', function (req, res) {
res.render('index', {weather: null, error: null});
});