mirror of
https://github.com/shareAI-lab/analysis_claude_code.git
synced 2026-08-08 23:23:38 +08:00
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
images: { unoptimized: true },
|
|
trailingSlash: true,
|
|
};
|
|
|
|
export default nextConfig;
|