Matchu
7205455ccb
Sigh, okay, serverless functions limiting us again :p Still, though, we are *much closer* to portability than our original CRA+Vercel stuff though!!
24 lines
561 B
JSON
24 lines
561 B
JSON
{
|
|
"routes": [
|
|
{
|
|
"src": "/outfits/(?<id>[^/]+)/(?<size>150|300|600)\\.png",
|
|
"dest": "/api/outfitImage.js?size=$size&id=$id"
|
|
},
|
|
{
|
|
"src": "/outfits/(?<id>[^/]+)/v/(?<updatedAt>[^/]+)/(?<size>150|300|600)\\.png",
|
|
"dest": "/api/outfitImage.js?size=$size&id=$id&updatedAt=$updatedAt"
|
|
},
|
|
{
|
|
"handle": "filesystem"
|
|
},
|
|
{
|
|
"src": "/static/js/[^.]*\\.[^.]*\\.chunk.js",
|
|
"status": 404
|
|
}
|
|
],
|
|
"functions": {
|
|
"api/assetImage.js": {
|
|
"excludeFiles": "node_modules/playwright/**"
|
|
}
|
|
}
|
|
}
|