mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
12 lines
302 B
TypeScript
12 lines
302 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export", // Enable static exports for GitHub Pages
|
|
trailingSlash: true, // Ensures proper routing on GitHub Pages
|
|
images: {
|
|
unoptimized: true, // Required for static export
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|