mirror of
https://github.com/shareAI-lab/learn-claude-code.git
synced 2026-04-30 15:29:32 +00:00
- 11 sessions from basic agent loop to autonomous teams - Python MVP implementations for each session - Mental-model-first docs in en/zh/ja - Interactive web platform with step-through visualizations - Incremental architecture: each session adds one mechanism
9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
images: { unoptimized: true },
|
|
trailingSlash: true,
|
|
};
|
|
|
|
export default nextConfig;
|