我正试图找到一种简单地将我的静态前端文件与node / express集成的方法。我不知道我是不对的:
Notification
在index.html文件中,我的CSS包含在路径中:const express = require('express');
const fs = require('fs');
const path = require('path');
const app = express();
const port = process.env.PORT || 3000;
app.get('/',(req,res)=>{
res.sendFile(path.join(__dirname + '/index.html'));
});
。
但它抛出了错误,href= "public/css/style.css"
并且我已经检查了堆栈上的几个答案,但实际上并不能理解。我希望有人能回答我的问题: