blog-backup/next.config.ts
Matt Bruce 6c7dfd8b40 Add working blog backup functionality
- Replaced default Next.js template with daily message backup UI
- Added API endpoint for CRUD operations on messages
- Created message form with date picker and textarea
- Grouped messages by date with expandable sections
- Data persists to data/messages.json
2026-02-18 09:32:47 -06:00

8 lines
129 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
};
export default nextConfig;