Posts by Lucas Barbosa • 56 points
6 posts
-
-1
votes1
answer23
viewsQ: Error building my project in Nextjs
I am having problems building my project for Vercel, if it is necessary to look at the code of my project it is here https://github.com/lucasbpereira/lgpdmap yarn build yarn run v1.22.5 $ next build…
-
0
votes0
answers25
viewsQ: Problem consuming JSON with hyphen (-)
I’m studying React and Next with Typescript and I tried to consume pokeAPI, when codar I came across an error while picking up the image, in JSON it appears as Official-artwork this hyphen does not…
javascriptasked Lucas Barbosa 56 -
1
votes2
answers52
viewsA: Trying to place the images next to each other with the display; flex
Basically the error was lack of attention when writing the code the comment was not made in the correct way Wrong *css flexbox*\ Correct /* css flexbox */ And the lack of one ; after the max-width:…
-
1
votes1
answer59
viewsA: How to hide the input title when filled in the form using CSS
Basically, you can do this with the CSS Flex Box feature by giving a flex-Direction: column-Reverse; HTML <div class="container column-reverse"> <input type="text" placeholder="teste"…
-
0
votes1
answer15
viewsA: How do I put a required input without the tag form?
Well I tested in codepen and your code has no problem just put the required in one of the radio-Buttons since all the "name" has equal values just add the required in only one element:…
-
0
votes1
answer73
viewsQ: References with Mongoosis
I currently have 3 Collections in my project, and I need 2 of them ("Course" and "Lesson"), have a link, I want when adding a "Lesson" it to be inserted in a "Course" through a push, but is giving…