gseps-front/next.config.js

21 lines
367 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'http',
hostname: '13.209.39.139',
port: '31192',
pathname: '/api/**',
},
],
},
compiler: {
styledComponents: true,
},
};
module.exports = nextConfig;