我想用koa
创建节点webpack开发服务器。
在我的节点代码中
app.use(koaStatic(path.resolve(__dirname, './dist')))
app.use(async (ctx, next) => {
await devMiddleware(ctx.req, ctx.res, next);
});
但是在这种情况下,找不到生成的js文件404
如果我将以下代码添加到代码中
app.use(async (ctx, next) => {
ctx.body = ''; // This line must exist otherwise will be 404 not found, whatever the value is
next();
});
我是新节点开发人员。 所以请帮助我,我真的很想知道为什么会这样