Aleksander Kozłowski
Aleksander Kozłowski
Thanks for sharing a solution 👍 You can also completely remove this line `main: "index.html"` from package.json. Parcel uses _main_ as the output file for libraries. NPM adds this line...
Hi Mark The config file for Prettier should be named as **.prettierrc.json**. From what I see in your editor, it's called **.prettier.rc.txt**. This file contains JSON, which supports only quotation...
No problem 🙂 It's completely normal to have problems with these things as a beginner. You will get used to it with time and practice. Programming in general requires a...
Also, there is an easier way to run a development server (I think it was mentioned in the course). Instead of using the live-server package, you can install the [Live...
Glad it works for you 🙂
Hi, it's best to post questions in Udemy's Q&A section of this course because that's where we provide regular support. Feel free to post this question there with a link...
Did you check the docs at [https://forkify-api.herokuapp.com/v2](https://forkify-api.herokuapp.com/v2)? The API key can be generated there, and the POST request uses the same endpoint as GET for all recipes (`/recipes`). You just...
It is the problem with Fractional. Installing a different package like Fracty should help.
That's strange. Have you changed the code in recipeView.js file to `import fracty from "fracty";` and then this line `ing.quantity ? new Fraction(ing.quantity).toString() : ''` to `ing.quantity ? fracty(ing.quantity).toString() :...
Can you try with this repo [https://github.com/akozdev/Forkify-Fracty-Parcel2](https://github.com/akozdev/Forkify-Fracty-Parcel2)? I used latest version of Fracty and Parcel. It should work out of the box.