next.config.ts 296 B

1234567891011121314151617
  1. import type {NextConfig} from "next";
  2. const nextConfig: NextConfig = {
  3. /* config options here */
  4. images:{
  5. remotePatterns: [
  6. {
  7. protocol: 'http',
  8. hostname: 'localhost',
  9. port: '8040',
  10. pathname: '/**',
  11. },
  12. ],
  13. }
  14. };
  15. export default nextConfig;