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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
321 B
JavaScript
Raw Normal View History

/** @type {import('next').NextConfig} */
const nextConfig = {
compiler: {
styledComponents: true,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "vod.api.video",
port: "",
pathname: "/my-account/**",
},
],
},
};
module.exports = nextConfig;