I have a basic Nuxt.js application. I wonder if it is possible to build the output into a single file (all the .js and .css files combined)?
It is possible to do it with just Vue.js following this answer https://stackoverflow.com/a/58309522/1666623 and I am looking for the same for Nuxt.js.
My reason to try to do that: the result might be embedded using a client's CMS, but it allows just single html files (it works ok with Vue.js output from the above link).