-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c1a6af
commit 5d301cf
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
}; | ||
} |