Skip to content

Commit

Permalink
Added Spoonacular API
Browse files Browse the repository at this point in the history
  • Loading branch information
im-abdulmannan committed Aug 3, 2024
1 parent 672c042 commit 89d0c19
Show file tree
Hide file tree
Showing 7 changed files with 429 additions and 70 deletions.
1 change: 1 addition & 0 deletions .example.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
NEXT_PUBLIC_SPOONACULAR_API_KEY = # spoonacular apiKey
NEXT_PUBLIC_FIREBASE_API_KEY = # firebase config apiKey
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN = # firebase config authDomain
NEXT_PUBLIC_FIREBASE_PROJECT_ID = # firebase config projectId
Expand Down
6 changes: 5 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
images: {
domains: ["img.spoonacular.com"],
},
};

export default nextConfig;
91 changes: 91 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.5",
"@mui/material": "^5.16.5",
"axios": "^1.7.3",
"dotenv": "^16.4.5",
"firebase": "^10.12.4",
"next": "14.2.5",
Expand Down
Loading

0 comments on commit 89d0c19

Please sign in to comment.