パーセルのミドルウェアの使用に問題があります。
常に「エントリが見つかりません」と表示されます。
私は何を間違っていますか?
これはコードです:
/* ----- Package Imports ----- */
import express from 'express';
import chalk from 'chalk';
import path from 'path';
/* ----- File Imports -----*/
import tools from './tools';
/* ----- End Imports -----*/
import Bundler from 'parcel-bundler';
const bundler = new Bundler('help.html', {});
/*<-------------- Start -------------->*/
const app = express();
app.use(bundler.middleware());
app.listen(2120, () => {
console.log(chalk.white.bgRed('Server start...'));
tools.loop(() => console.log(''), 2);
});