Files
pixel-bead-pattern/next.config.ts
T

9 lines
204 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Export a browser-only site so the small server only needs to serve files.
output: "export",
};
export default nextConfig;