Fix flow errors

This commit is contained in:
Jori Lallo
2017-05-09 23:14:24 -07:00
parent e051713177
commit 75ad27658e
19 changed files with 519 additions and 179 deletions

View File

@ -9,9 +9,10 @@ import subdomainRedirect from './middlewares/subdomainRedirect';
const koa = new Koa();
const router = new Router();
router.get('/service-worker.js', async (ctx) => {
router.get('/service-worker.js', async ctx => {
ctx.set('Content-Type', 'application/javascript');
if (process.env.NODE_ENV === 'production') ctx.set('Cache-Control', `max-age=${30}`);
if (process.env.NODE_ENV === 'production')
ctx.set('Cache-Control', `max-age=${30}`);
await sendfile(ctx, path.join(__dirname, './static/service-worker.js'));
if (!ctx.status) ctx.throw(httpErrors.NotFound());
});
@ -19,22 +20,25 @@ router.get('/service-worker.js', async (ctx) => {
router.get('/_health', ctx => (ctx.body = 'OK'));
if (process.env.NODE_ENV === 'production') {
router.get('/static/*', async (ctx) => {
router.get('/static/*', async ctx => {
ctx.set({
'Cache-Control': `max-age=${356 * 24 * 60 * 60}`,
});
await sendfile(ctx, path.join(__dirname, '../dist/', ctx.path.substring(8)));
await sendfile(
ctx,
path.join(__dirname, '../dist/', ctx.path.substring(8))
);
});
router.get('*', async (ctx) => {
router.get('*', async ctx => {
await sendfile(ctx, path.join(__dirname, '../dist/index.html'));
if (!ctx.status) ctx.throw(httpErrors.NotFound());
});
koa.use(subdomainRedirect());
} else {
router.get('*', async (ctx) => {
router.get('*', async ctx => {
await sendfile(ctx, path.join(__dirname, './static/dev.html'));
if (!ctx.status) ctx.throw(httpErrors.NotFound());
});