12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import Koa from 'koa';
- import { PORT, HOST } from './app.config.mjs';
- import router from './router/index.mjs';
- import serve from 'koa-static';
- const app = new Koa();
- app.use(serve('pages'));
- app.use(router.routes());
- app.use(router.allowedMethods());
- app.listen(PORT, HOST, () => {
- console.info(`Server is running at 'http://${HOST}:${PORT}'`);
- });
|