rsnext/examples/with-apivideo/next.config.js

13 lines
215 B
JavaScript
Raw Normal View History

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