UNPKG

@appsemble/node-utils

Version:

NodeJS utilities used by Appsemble internally.

9 lines 325 B
import { fileURLToPath } from 'node:url'; import serve from 'koa-static'; export function createStaticHandler(name) { return serve(fileURLToPath(new URL(`../../../../../dist/${name}`, import.meta.url)), { index: false, maxAge: 365 * 24 * 60 * 60 * 1000, }); } //# sourceMappingURL=staticHandler.js.map