Where to store images that are added to the application after the build? In nuxt2 I used the /static folder for this. I uploaded images there and from there I took them for the frontend. But in nuxt3 folder /public, no longer works as well. After the build everything copies to .otput/…
Question posted in Javascript
A very good W3school tutorial can be found here.
A very good W3school tutorial can be found here.
2
Answers
you can do one of the following:
i used nginx and did the following setup for statically generated site:
if you are using SSR then we need to tweak the nginx config file a little as the app should be served with pm2 and proxy pass it to nginx.let me know if you need that.