export const getConfig = async () => {
    const { getConfig } = await import('./index.js');

    return getConfig();
};

export const defineConfig = async (factory: (config: any, context: any) => any) => {
    const { defineConfig } = await import('./index.js');

    return await defineConfig(factory);
};

export default async () => {
    const index = await import('./index.js');

    return index.default();
};
