gemini-chat

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

next.config.ts (155B)


      1 import type { NextConfig } from "next";
      2 
      3 const nextConfig: NextConfig = {
      4   experimental: {
      5      useTypeScriptCli: true
      6   }
      7 };
      8 
      9 export default nextConfig;