8 Commits

Author SHA1 Message Date
553ea4848b Update src/app/page.tsx 2026-03-04 19:38:44 +00:00
cb39383e83 Update src/app/page.tsx 2026-03-04 19:37:59 +00:00
5a26c1d079 Update src/app/layout.tsx 2026-03-04 19:37:59 +00:00
a03f120761 Add next.config.js 2026-03-04 19:37:58 +00:00
51ddf5f7f7 Merge version_2 into main
Merge version_2 into main
2026-03-04 19:34:08 +00:00
f74ede57a9 Merge version_2 into main
Merge version_2 into main
2026-03-04 19:32:23 +00:00
fd4199bc60 Merge version_2 into main
Merge version_2 into main
2026-03-04 19:30:26 +00:00
3d32598eda Merge version_2 into main
Merge version_2 into main
2026-03-04 19:28:51 +00:00
2 changed files with 26 additions and 0 deletions

20
next.config.js Normal file
View File

@@ -0,0 +1,20 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'webuild-dev.s3.eu-north-1.amazonaws.com',
pathname: '/**',
},
{
protocol: 'https',
hostname: '**.amazonaws.com',
pathname: '/**',
},
],
unoptimized: true,
},
};
module.exports = nextConfig;

View File

@@ -15,6 +15,12 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<head>
<script
async
src="https://cdn.jsdelivr.net/npm/next-images@1.0.0/dist/index.js"
/>
</head>
<body className={inter.className}>
{children}