upload images
Need Help For Upload File in Nuxt3 Server
what directory should i put my file for example image while upload file to server.
in my case i put them under public/uploads and working just fine for dev mode.
but when i run command
npm run build
those files from public is copy to .output/public/uploads folder.
i wonder in production where i should put my upload file put them directly to .output/public/uploads
or public/uploads
.
here is my code that handle the file upload on server/api/imageUpload.post.ts
here is my misunderstanding:
1. if i put my files in public/uploads
. this docs https://nitro.unjs.io/guide/assets#public-assets says when building nitro will copy
files in the public directory. this means my upload files on production will wait until the next build so they can be access.
2. if i put directly to .output/public/uploads
is these file manifest like in the docs https://nitro.unjs.io/guide/assets#production-public-assets
if have any solution i really appreciate it.5 Replies
the public folder is static
so yes it will only be on next build will the new files show
you would have to use a database if I understand correctly
any files that are in the public directory should be accessable directly for as far as i know
regarding uploading, the public directory is more meant for static uploads i guess
on your next deploy it will be overwritten (depending on how your hosting is setted up)
you could hook it up to S3 or something if you want to
I mean ...I have experience a little bit with Laravel where all public assets..can be accessed directly without building again. Anyway the path of the file is stored in the database
For S3 maybe later on. At the moment I just want to use Ubuntu vps.
hmm i see, cant you use a static path outside of the frontend/nuxt folder?
otherwise i guess that on a new deploy, its gonna clear the public folder
maybe this last alternative, so i can experiment to create API for read the file in the destination folder to serve it as static.