Files
langship.sh/web/next.config.mjs
T

13 lines
361 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
// Static export writes to ./out (Go embed reads from there).
// Leave distDir at the default ".next" so build artifacts and the
// export target don't collide.
images: { unoptimized: true },
trailingSlash: true,
reactStrictMode: true,
};
export default nextConfig;