next.config.ts 229 B

12345678910111213
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. output: 'export',
  4. basePath: '/ui',
  5. assetPrefix: '/ui',
  6. trailingSlash: true,
  7. images: {
  8. unoptimized: true,
  9. },
  10. };
  11. export default nextConfig;