gseps-front/next.config.js

21 lines
431 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['13.209.39.139'],
// remotePatterns: [
// {
// protocol: 'http',
// hostname: '13.209.39.139',
// port: '31192',
// pathname: '/api/v1/buckets/gseps-test-a/objects/**',
// },
// ],
},
compiler: {
styledComponents: true,
},
};
module.exports = nextConfig;