diff options
| author | 2025-12-26 22:39:23 +0800 | |
|---|---|---|
| committer | 2025-12-26 22:39:23 +0800 | |
| commit | 32ca410f4edbff578d71781d943c41573912f476 (patch) | |
| tree | 49f7e1e5602657d23945082fe273fc4802959a40 /scripts/worker.ts | |
Initial commitmain
Diffstat (limited to 'scripts/worker.ts')
| -rw-r--r-- | scripts/worker.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/worker.ts b/scripts/worker.ts new file mode 100644 index 0000000..ae9db49 --- /dev/null +++ b/scripts/worker.ts @@ -0,0 +1,6 @@ +export default { + async fetch(request: Request, env: any) { + // Serve static assets + return env.ASSETS.fetch(request); + } +}; |
