2023-08-23 07:50:10 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
2023-08-23 08:12:52 +00:00
|
|
|
const nextConfig = {
|
2023-09-11 08:40:47 +00:00
|
|
|
reactStrictMode: true,
|
2023-09-11 09:10:44 +00:00
|
|
|
output: 'standalone',
|
2023-09-11 08:40:47 +00:00
|
|
|
images: {
|
2023-09-11 10:09:14 +00:00
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
protocol: 'http',
|
|
|
|
hostname: '13.209.39.139',
|
|
|
|
port: '31192',
|
|
|
|
pathname: '/api/**',
|
|
|
|
},
|
|
|
|
],
|
2023-09-11 08:40:47 +00:00
|
|
|
},
|
2023-08-23 08:12:52 +00:00
|
|
|
compiler: {
|
|
|
|
styledComponents: true,
|
|
|
|
},
|
|
|
|
};
|
2023-08-23 07:50:10 +00:00
|
|
|
|
2023-08-23 08:12:52 +00:00
|
|
|
module.exports = nextConfig;
|