mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-27 00:05:39 +00:00
- Updated the SSR routing to conditionally load development and production handlers based on the NODE_ENV variable. - Introduced a new dev.ts file to handle requests in development mode, including asset proxying and HTML response generation. - Removed the not-found.tsx file and streamlined the photoId route logic for better maintainability. - Added support for Open Graph and Twitter meta tags in the production handler for improved SEO. - Updated README with new S3 endpoint configuration. Signed-off-by: Innei <tukon479@gmail.com>
10 lines
161 B
TypeScript
10 lines
161 B
TypeScript
export {
|
|
handler as DELETE,
|
|
handler as GET,
|
|
handler as HEAD,
|
|
handler as OPTIONS,
|
|
handler as PATCH,
|
|
handler as POST,
|
|
handler as PUT,
|
|
} from './dev'
|