Next.js 15 + Tailwind CSS v4 week calendar showing Six Flags park hours. Scrapes the internal CloudFront API, stores results in SQLite. Includes Dockerfile (Debian/Playwright-compatible), docker-compose, and Gitea Actions pipeline that builds and pushes to the container registry. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// better-sqlite3 is a native module — must not be bundled by webpack
|
|
serverExternalPackages: ["better-sqlite3"],
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|