How do I place a webm file on my site?
Answered
In&Out posted this in #help-forum
In&OutOP
How do I place a webm file on my site?
9 Replies
In&OutOP
<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
what error are you getting?
In&OutOP
I got it, installed react-player , solved it
Answer
In&OutOP
thanks
In&OutOP
Uhm, I literally just downloaded that package and it solved it for me lol