无法 运行 Sencha CMD 在 Node js 上生成 ExtJS 6.2 应用程序

Failed to run Sencha CMD generated ExtJS 6.2 app on Node js

我正在尝试 运行 我在 Node.js 上使用 Sencha CMD 生成的现有 ExtJS 6.2 应用程序。下面是我的 app.js:

const express = require('express');
const app  = express();

//Middleware
app.use(express.static(__dirname + '/public/monitor/' ));
app.post('/', function( req ,res){
    res.send("Success");
});

app.listen(3000, function(){
    console.log('Server running on port 3000');
});

var server = app.listen(3300, function () {
    var host = server.address().address;
    var port = server.address().port;

    console.log('App listening at http://%s:%s', host, port);
});

但是,由于以下错误,无法运行该页面。

Refused to apply style from 'http://localhost:3000/build/development/Monitor/classic/resources/Monitor-all_1.css?_dc=1597650810261' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.

sencha website 中已有指南,但不适用于 ExtJS 的 GPL 版本。所以我无法更新到 ExtJS 6.6 或 7.0。

有什么解决办法吗?

此问题是因为文件夹中缺少 css 文件。我从另一台机器上得到它并解决了问题。