In a NextJS project, in which directory should files such as SVGs and PNGs that will be used by components be stored?
Public does not seem to be the right place (see https://stackoverflow.com/a/45300180/20242212).
I do not currently have a src folder, I opt-ed out.
What would make the most sense?
- Add an assets folder and place SVG files there? (assets folder would be in the same level as the pages folder)
- Or perhaps add a src folder then, add the assets folder inside it?
- Or is there something better?