Next.js Discord

Discord Forum

How do I place a webm file on my site?

Answered
In&Out posted this in #help-forum
Open in Discord
Avatar
How do I place a webm file on my site?
Answered by In&Out
I got it, installed react-player , solved it
View full answer

9 Replies

Avatar
          <Image
            src={
              "https://firebasestorage.googleapis.com/v0/b/some link"
            }
            width={500}
            height={500}
          />
I placed this but it doesn't work
/** @type {import('next').NextConfig} */
const nextConfig = {
  images: {
    remotePatterns: [
      {
        protocol: "https",
        hostname: "firebasestorage.googleapis.com",
        port: "",
      },
    ],
  },
};

module.exports = nextConfig;
And the config file
Avatar
what error are you getting?
Avatar
I got it, installed react-player , solved it
Answer
Avatar
thanks
Avatar
Uhm, I literally just downloaded that package and it solved it for me lol