mcfly/packages/core/define-config.mjs
2023-10-24 20:51:32 +02:00

14 lines
262 B
JavaScript

/**
* @typedef {{
* components: 'js'
* }} McFlyConfig
*/
/**
* Define the configuration for the McFly project
* @param {McFlyConfig} config
* @returns {function(): McFlyConfig}
*/
export default function defineConfig(config) {
return () => config;
}