File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed
Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "typescript.tsdk" : " node_modules\\ typescript\\ lib"
3+ }
Original file line number Diff line number Diff line change 11/** @type {import('next').NextConfig } */
22const nextConfig = {
3+ env : {
4+ NEXT_PUBLIC_FIREBASE_API_KEY : process . env . NEXT_PUBLIC_FIREBASE_API_KEY ,
5+ NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN : process . env . NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN ,
6+ NEXT_PUBLIC_FIREBASE_PROJECT_ID : process . env . NEXT_PUBLIC_FIREBASE_PROJECT_ID ,
7+ NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET : process . env . NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET ,
8+ NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID : process . env . NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID ,
9+ NEXT_PUBLIC_FIREBASE_APP_ID : process . env . NEXT_PUBLIC_FIREBASE_APP_ID
10+ } ,
311 images : {
412 unoptimized : true ,
513 } ,
614 output : 'export' ,
7- }
15+ } ;
816
9- module . exports = nextConfig
17+ module . exports = nextConfig ;
Original file line number Diff line number Diff line change @@ -45,7 +45,10 @@ export default function Recipes() {
4545 src = { recipe . image }
4646 alt = { recipe . name }
4747 placeholder = "blur"
48- quality = { 75 }
48+ height = { 625 }
49+ width = { 500 }
50+ quality = { 25 }
51+ loading = "eager"
4952 className = { styles . image }
5053 />
5154 < div className = { styles . name } > { recipe . name } </ div >
You can’t perform that action at this time.
0 commit comments