next.js/examples/with-apivideo/next.config.js
next.config.js19 lines321 B
/** @type {import('next').NextConfig} */
const nextConfig = {
  compiler: {
    styledComponents: true,
  },
  images: {
    remotePatterns: [
      {
        protocol: "https",
        hostname: "vod.api.video",
        port: "",
        pathname: "/my-account/**",
      },
    ],
  },
};

module.exports = nextConfig;
Quest for Codev2.0.0
/
SIGN IN