I'm hosting an emberjs application on koajs with koa-static. according to below code :
var app = koa();
var App1 = koa();
App1.use(stati(__dirname + "/App1"));
app.use(mount('/AppViewer',App1));
app.listen(3000);
When calling localhost:3000/AppViewer
i can't see my page and gets error says can't find .js and .css files, but when calling localhost:3000/AppViewer/index.html
all things works correctly. so my question is how to see my page when calling localhost:3000/AppViewer
.