task-runtime-ai / next.config.ts
harshlocham's picture
Refactor code structure for improved readability and maintainability
f0f2f77
Raw
History Blame Contribute Delete
158 Bytes
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
externalDir: true,
},
};
export default nextConfig;