Hi, how are you?
I have a question while I was working on the next.js project.
When developing a project other than next, I made a reset.css file like the code below and used it I wonder where to do this in next.js.
/* reset.css */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
When rendering components
<style jsx>{`
// make here.
`}</style>
I remember writing it inside the style tag When applied globally, I think they made a separate js file and returned it like a component.
© 2024 OneMinuteCode. All rights reserved.