smartEnergyView-frontend/next.config.js
2022-06-27 14:57:03 -03:00

14 lines
242 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
compiler: {
styledComponents: true,
},
images: {
domains: ["kluppdevelopment.s3.sa-east-1.amazonaws.com"]
}
}
module.exports = nextConfig