I can configure webpack to allow includes of scss.
Note: Working with classNames on the original html is faster when copying code between static html to React components, which is why I want to do it this way.
How to make this work in nextjs without css modules and styled components and just using basic scss and classnames?
import 'styles/MyComponent.scss';
const MyComponent = () => {
return (
<div className="someClass">
stuff..
</div>
);
};
export default MyComponent;
_app
? Ref: Adding a Global Stylesheet, or maybe do something like this: stackoverflow.com/a/68531573, or this: stackoverflow.com/a/68045052 – Trail