add content db type
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
import { ContentConfig } from '@/modules/content/types';
|
||||
|
||||
export const content = (): ContentConfig => ({
|
||||
SearchType: 'mysql',
|
||||
});
|
||||
@@ -1 +1,2 @@
|
||||
export * from './database.config';
|
||||
export * from './content.config';
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
export type SearchType = 'mysql';
|
||||
|
||||
export interface ContentConfig {
|
||||
SearchType?: SearchType;
|
||||
}
|
||||
Reference in New Issue
Block a user