gseps-front/next.config.js

21 lines
431 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,
images: {
domains: ['13.209.39.139'],
// remotePatterns: [
// {
// protocol: 'http',
// hostname: '13.209.39.139',
// port: '31192',
// pathname: '/api/v1/buckets/gseps-test-a/objects/**',
// },
// ],
},
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;