13 lines
407 B
TypeScript
13 lines
407 B
TypeScript
|
|
import type { NextConfig } from "next";
|
||
|
|
|
||
|
|
// Static export — the marketing site is fully static (SEO-friendly pre-rendered
|
||
|
|
// HTML) and served by nginx. Store links are fetched client-side at runtime from
|
||
|
|
// the API (so the admin can change them without a rebuild).
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
output: "export",
|
||
|
|
images: { unoptimized: true },
|
||
|
|
trailingSlash: true,
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|