add frontend class for serving frontend files from repos
parent
dcaf72e700
commit
b43f35d1b9
@ -0,0 +1,8 @@
|
|||||||
|
export class Frontend {
|
||||||
|
async serve(event) {
|
||||||
|
// TODO: load files from different mounted repos
|
||||||
|
event.respondWith(new Response(
|
||||||
|
'Not Found', {status: 404}
|
||||||
|
))
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue