add weather display

This commit is contained in:
lumijiez
2025-05-22 22:11:20 +03:00
parent aa0e88d635
commit 03d5f54b61
7 changed files with 394 additions and 0 deletions

14
next.config.js Normal file
View File

@@ -0,0 +1,14 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.weatherapi.com',
pathname: '/weather/**',
},
],
},
}
module.exports = nextConfig