We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31a24e4 commit f7eb7f5Copy full SHA for f7eb7f5
2 files changed
apps/wapijs.co/next.config.mjs
@@ -3,6 +3,13 @@ const nextConfig = {
3
reactStrictMode: true,
4
compiler: {
5
removeConsole: process.env.NODE_ENV === 'production'
6
+ },
7
+ images: {
8
+ remotePatterns: [
9
+ {
10
+ hostname: 'res.cloudinary.com'
11
+ }
12
+ ]
13
}
14
15
apps/wapijs.co/src/app/page.tsx
@@ -39,7 +39,7 @@ export default function Home() {
39
40
<div className="flex h-screen max-w-4xl flex-1 items-center bg-secondary-950 px-4">
41
<video autoPlay={true} loop={true} muted className="rounded-xl">
42
- <source src="/assets/library-usage-flow.mp4" />
+ <source src="https://res.cloudinary.com/dm4zlrwhs/video/upload/v1716021568/library-usage-flow_qvvig8.mp4" />
43
</video>
44
</div>
45
</main>
0 commit comments