next.config.ts 421 B

1234567891011121314151617181920212223
  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. protocol: 'http',
  14. hostname: '47.107.107.47',
  15. port: '8040',
  16. pathname: '/**',
  17. },
  18. ],
  19. }
  20. };
  21. export default nextConfig;