9 lines
204 B
TypeScript
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;
|