I feel a bit silly asking this, but I'm having trouble with resolving a relative path in my React app.
Where I want to import the css:
src/components/pages/mypage.js
Where my css file is located:
src/custom_styles/sidebar.css
How I'm trying to import sidebar.css in mypage.js:
import '.../custom_styles/sidebar.css'
This is resulting in Module not found: Can't resolve '.../custom_styles/sidebar.css' in the console when compiling. What am I doing wrong?
import '../custom_styles/sidebar.css'