next.config.ts 548 B

1234567891011121314151617181920212223242526272829
  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: '192.168.110.235',
  15. port: '8040',
  16. pathname: '/**',
  17. },
  18. {
  19. protocol: 'http',
  20. hostname: '47.107.107.47',
  21. port: '8040',
  22. pathname: '/**',
  23. },
  24. ],
  25. }
  26. };
  27. export default nextConfig;