I have a quick question
I'm looking to create a dedicated directory for the static files generated by Nuxt Js
Currently, Nuxt Js compiles all files into a single directory called 'dist'
As I am utilizing Django Server as my backend, I need a separate directory for static files that is relative to the template directory
My desired file system structure is:
--/templates(HTML Files)
--/static(Static Files)
Can you provide suggestions on how to configure Nuxt in order to achieve this setup?