forked from StampyAI/stampy-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.ts
63 lines (57 loc) · 1.8 KB
/
server.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import {getAssetFromKV} from '@cloudflare/kv-asset-handler'
import type {AppLoadContext} from '@remix-run/cloudflare'
import {createRequestHandler, logDevReady} from '@remix-run/cloudflare'
import * as build from '@remix-run/dev/server-build'
// @ts-expect-error TODO
import __STATIC_CONTENT_MANIFEST from '__STATIC_CONTENT_MANIFEST'
const MANIFEST = JSON.parse(__STATIC_CONTENT_MANIFEST)
const handleRemixRequest = createRequestHandler(build, process.env.NODE_ENV)
if (process.env.NODE_ENV === 'development') {
logDevReady(build)
}
export default {
async fetch(
request: Request,
env: {
__STATIC_CONTENT: Fetcher
},
ctx: ExecutionContext
): Promise<Response> {
try {
const url = new URL(request.url)
const ttl = url.pathname.startsWith('/build/')
? 60 * 60 * 24 * 365 // 1 year
: 60 * 5 // 5 minutes
for (const [k, v] of Object.entries(env)) {
// @ts-expect-error new wrangler doesn't load global variables any more => let's do it manually
global[k] = v
}
return await getAssetFromKV(
{
request,
waitUntil: ctx.waitUntil.bind(ctx),
} as FetchEvent,
{
ASSET_NAMESPACE: env.__STATIC_CONTENT,
ASSET_MANIFEST: MANIFEST,
cacheControl: {
browserTTL: ttl,
edgeTTL: ttl,
},
}
)
} catch (error) {
// ignore errors about API routes like:
// NotFoundError [KVError]: could not find questions/glossary/index.html in your content namespace
}
try {
const loadContext: AppLoadContext = {
env,
}
return await handleRemixRequest(request, loadContext)
} catch (error) {
console.log(error)
return new Response('An unexpected error occurred', {status: 500})
}
},
}