express3を使用していますが、html / javascript / cssファイルを読み込もうとすると、cssなしでhtmlが読み込まれます。
私はこのコードを使用してファイルをロードしています-
express.get('/', function (req, res) {
res.sendfile("index.html");
res.sendfile("style.css");
res.sendfile("script.js");
});
それで、なにかお手伝いできますか?