| 1234567891011121314151617181920212223 |
- import type {NextConfig} from "next";
- const nextConfig: NextConfig = {
- /* config options here */
- images:{
- remotePatterns: [
- {
- protocol: 'http',
- hostname: 'localhost',
- port: '8040',
- pathname: '/**',
- },
- {
- protocol: 'http',
- hostname: '47.107.107.47',
- port: '8040',
- pathname: '/**',
- },
- ],
- }
- };
- export default nextConfig;
|