admin管理员组文章数量:1345096
Here is my current media collection config:
import type { CollectionConfig } from "payload";
export const Media: CollectionConfig = {
slug: "media",
...
access: {
read: () => true,
},
fields: [
{
name: "alt",
type: "text",
required: true,
},
],
upload: {
staticDir: "norrkeoeping",
adminThumbnail: "thumbnail",
},
};
And here my general payload config:
plugins: [
vercelBlobStorage({
collections: {
media: true,
},
token: process.env.BLOB_READ_WRITE_TOKEN,
}),
payloadCloudPlugin(),
importExportPlugin({}),
],
I thought the setup above should suffice. Having the "staticDir: "norrkeoeping"" create a new quasi folder in Vercel blob storage on each upload. But that is not the case. Each time I upload an image for example via the Payload admin upload feature it uploads the file successfully, but just dumps the file on the "root" directory in Vercel blob storage.
This makes my blob storage explorer in Vercel look very messy. Especially since now I'm starting to use that one blob storage for multiple projects. I would therefore very much like a folder for each project.
Additional question, how does PayloadCMS actually handle the Vercel blob storage? I ask because I was surprised to see the same vercel blob storage connection in one project show only the files uploaded via its payload admin upload and the other only its specifically uploaded files.
How does that work? Does it have to do with the Payload secret you have to create maybe? I don't like the mystification of the blob upload feature.
Here the docs:
Upload Storage Adapters
Here is my current media collection config:
import type { CollectionConfig } from "payload";
export const Media: CollectionConfig = {
slug: "media",
...
access: {
read: () => true,
},
fields: [
{
name: "alt",
type: "text",
required: true,
},
],
upload: {
staticDir: "norrkeoeping",
adminThumbnail: "thumbnail",
},
};
And here my general payload config:
plugins: [
vercelBlobStorage({
collections: {
media: true,
},
token: process.env.BLOB_READ_WRITE_TOKEN,
}),
payloadCloudPlugin(),
importExportPlugin({}),
],
I thought the setup above should suffice. Having the "staticDir: "norrkeoeping"" create a new quasi folder in Vercel blob storage on each upload. But that is not the case. Each time I upload an image for example via the Payload admin upload feature it uploads the file successfully, but just dumps the file on the "root" directory in Vercel blob storage.
This makes my blob storage explorer in Vercel look very messy. Especially since now I'm starting to use that one blob storage for multiple projects. I would therefore very much like a folder for each project.
Additional question, how does PayloadCMS actually handle the Vercel blob storage? I ask because I was surprised to see the same vercel blob storage connection in one project show only the files uploaded via its payload admin upload and the other only its specifically uploaded files.
How does that work? Does it have to do with the Payload secret you have to create maybe? I don't like the mystification of the blob upload feature.
Here the docs:
Upload Storage Adapters
Share Improve this question asked 13 hours ago Dince-afkDince-afk 2322 silver badges9 bronze badges1 Answer
Reset to default 2You can use the prefix
field to set a sub-directory.
vercelBlobStorage({
enabled: true,
collections: {
media: {
prefix: 'cms_images',
},
},
token: process.env.BLOB_READ_WRITE_TOKEN,
})
As of now, there's no fix for this. You can manually handle uploads as shown here
本文标签:
版权声明:本文标题:typescript - How do I create sub foldersdirectories with PayloadCMS media uploads and the Vercel blob storage? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743753251a2533041.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论