diff --git a/next.config.js b/next.config.js index 324c814..895baa9 100644 --- a/next.config.js +++ b/next.config.js @@ -9,28 +9,23 @@ const withPWA = require("next-pwa")({ const nextConfig = { images: { - domains: [ - "mazassumnida.wtf", - "openweathermap.org", - "avatars.githubusercontent.com", - "lh3.googleusercontent.com", - "lh4.googleusercontent.com", - "lh5.googleusercontent.com", - "lh6.googleusercontent.com", - ], remotePatterns: [ { protocol: "https", hostname: "*.public.blob.vercel-storage.com", pathname: "/**", }, + { protocol: "https", hostname: "mazassumnida.wtf" }, + { protocol: "https", hostname: "openweathermap.org" }, + { protocol: "https", hostname: "avatars.githubusercontent.com" }, + { protocol: "https", hostname: "lh3.googleusercontent.com" }, + { protocol: "https", hostname: "lh4.googleusercontent.com" }, + { protocol: "https", hostname: "lh5.googleusercontent.com" }, + { protocol: "https", hostname: "lh6.googleusercontent.com" }, ], }, - env: {}, + reactStrictMode: true, - "fontawesome-svg-core": { - license: "free", - }, }; module.exports = withPWA(nextConfig); diff --git a/package.json b/package.json index 0a1b2c7..0e2b321 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,9 @@ "name": "canary-lab", "version": "0.1.0", "private": true, + "engines": { + "node": ">=24" + }, "scripts": { "dev": "next dev", "build": "next build",