Skip to content

Commit

Permalink
move static file routing
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisjofrank committed May 29, 2024
1 parent 1c1a6af commit 5d301cf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions server/util/routeStaticFilesFrom.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { Next } from "jsr:@oak/oak/middleware";
import { Context } from "jsr:@oak/oak/context";

// Configure static site routes so that we can serve
// the Vite build output and the public folder
export default function routeStaticFilesFrom(staticPaths: string[]) {
return async (context: Context<Record<string, object>>, next: Next) => {
for (const path of staticPaths) {
try {
await context.send({ root: path, index: "index.html" });
return;
} catch {
continue;
}
}

await next();
};
}

0 comments on commit 5d301cf

Please sign in to comment.