smartEnergyView-frontend/next.config.js
2022-08-09 09:17:29 -03:00

14 lines
293 B
JavaScript

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