mirror of
https://github.com/open-gitagent/langship.sh.git
synced 2026-08-03 07:21:04 +02:00
13 lines
361 B
JavaScript
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;
|