zeroant
Version:
modules for zeroant
14 lines (13 loc) • 779 B
text/typescript
import { componentLoader } from './component-loader.js'
import { URL } from 'url'
export const BASE_PATH = new URL('../../', import.meta.url).pathname.replace(/\/$/, '')
export const Components = {
Dashboard: componentLoader.add('Dashboard', BASE_PATH + '/@admin/dashboard/dashboard.js', 'rootBundle'),
SchemaPlayground: componentLoader.add(
'SchemaPlayground',
BASE_PATH + '/@admin/dashboard/SchemaPlayground/SchemaPlayground/index.js',
'rootBundle'
), // other custom components
SchemaEditor: componentLoader.add('SchemaEditor', BASE_PATH + '/@admin/dashboard/SchemaPlayground/SchemaEditor/index.js', 'rootBundle'), // other custom components
EditJSON: componentLoader.add('EditJSON', BASE_PATH + '/@admin/dashboard/EditJSON/EditJSON.js', 'rootBundle')
}