smartEnergyView-frontend/next.config.js

14 lines
292 B
JavaScript

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