cms.nicwands.com/config/plugins.ts
2026-06-04 13:38:13 -04:00

13 lines
223 B
TypeScript

import type { Core } from "@strapi/strapi";
const config = ({
env,
}: Core.Config.Shared.ConfigParams): Core.Config.Plugin => ({
upload: {
config: {
provider: "local",
},
},
});
export default config;