As per title. I'm trying to have the import export function working in a NestJS application
AdminModule.createAdminAsync({
useFactory: async () => {
const prisma = new PrismaService();
return {
adminJsOptions: {
resources: [{
resource: {
model: getModelByName('ContactSearch'),
client: prisma,
},
options: {},
features: [importExportFeature({
new ComponentLoader()
})]
}]
}
})
This did not work and I was referred to a broken link

As per title. I'm trying to have the import export function working in a NestJS application
This did not work and I was referred to a broken link
