gseps-front/next.config.js

14 lines
240 B
JavaScript
Raw Normal View History

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,
output: 'standalone',
2023-09-11 08:40:47 +00:00
images: {
domains: ['13.209.39.139'],
},
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;