mirror of
https://github.com/strapi/strapi.git
synced 2025-07-24 01:18:17 +00:00
fix: don't use a named export, export an object
This commit is contained in:
parent
28d82d3333
commit
85ef76015c
@ -1 +1,5 @@
|
||||
export { default as schema } from './schema';
|
||||
import schema from './schema';
|
||||
|
||||
export default {
|
||||
schema,
|
||||
};
|
||||
|
@ -1,5 +1,5 @@
|
||||
import type { Strapi } from '@strapi/strapi';
|
||||
import { schema as auditLogContentType } from './content-types/audit-log';
|
||||
import auditLogContentType from './content-types/audit-log';
|
||||
|
||||
interface Event {
|
||||
action: string;
|
||||
|
Loading…
x
Reference in New Issue
Block a user