I have a nuxt blog with the following folder structure and want assets/images and content to belong in their own separate repo:
project
- assets
- css
- *images*
- *content*
- components
- middleware
- layouts
- pages
As required by nuxt-content, /content contains the site specific content, like markdown files that go in the about page and blog articles. I am placing article and page images inside /assets/images.
I currently exclude /assets/images and /content in .gitignore, but I don't know how to give them their own repo. There doesn't seem to be a clean way to have two .git files in parent directory 'project' and if I initialize a repo in /content it doesn't have access to /assets/images.