rsnext/examples/with-apivideo/next.config.js
Yohann MARTZOLFF 12408a3f2d
chore(examples): update with-apivideo (#39727)
Co-authored-by: Thibault Beyou <37510686+ThibaultBee@users.noreply.github.com>
2022-10-20 17:05:54 +02:00

12 lines
215 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
compiler: {
styledComponents: true,
},
images: {
domains: ['cdn.api.video'],
},
}
module.exports = nextConfig