Skip to content

Commit 32575cf

Browse files
authored
Merge pull request #114 from LimSB-dev/canary
Fix issues
2 parents 3e64134 + 6c65a9d commit 32575cf

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

next.config.js

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,23 @@ const withPWA = require("next-pwa")({
99

1010
const nextConfig = {
1111
images: {
12-
domains: [
13-
"mazassumnida.wtf",
14-
"openweathermap.org",
15-
"avatars.githubusercontent.com",
16-
"lh3.googleusercontent.com",
17-
"lh4.googleusercontent.com",
18-
"lh5.googleusercontent.com",
19-
"lh6.googleusercontent.com",
20-
],
2112
remotePatterns: [
2213
{
2314
protocol: "https",
2415
hostname: "*.public.blob.vercel-storage.com",
2516
pathname: "/**",
2617
},
18+
{ protocol: "https", hostname: "mazassumnida.wtf" },
19+
{ protocol: "https", hostname: "openweathermap.org" },
20+
{ protocol: "https", hostname: "avatars.githubusercontent.com" },
21+
{ protocol: "https", hostname: "lh3.googleusercontent.com" },
22+
{ protocol: "https", hostname: "lh4.googleusercontent.com" },
23+
{ protocol: "https", hostname: "lh5.googleusercontent.com" },
24+
{ protocol: "https", hostname: "lh6.googleusercontent.com" },
2725
],
2826
},
29-
env: {},
27+
3028
reactStrictMode: true,
31-
"fontawesome-svg-core": {
32-
license: "free",
33-
},
3429
};
3530

3631
module.exports = withPWA(nextConfig);

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"name": "canary-lab",
33
"version": "0.1.0",
44
"private": true,
5+
"engines": {
6+
"node": ">=24"
7+
},
58
"scripts": {
69
"dev": "next dev",
710
"build": "next build",

0 commit comments

Comments
 (0)