dcfc6da604
Adds an assets server to the demo worker, and reworks the existing asset server to use the same code. There are a few simplifications to the code due to some DX improvements working with R2 and caches. I also removed the `HEAD` request from the assets server: i took a look at our logs and it's not actually used at all. This also fixes an issue where users could overwrite the contents of the asset uploads bucket. ### Change type - [x] `other`
14 lines
268 B
JSON
14 lines
268 B
JSON
{
|
|
"extends": "../../config/tsconfig.base.json",
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist", ".tsbuild*"],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"emitDeclarationOnly": false
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../../packages/worker-shared"
|
|
}
|
|
]
|
|
}
|