
* feat: move defineMcFlyConfig to @mcflyjs/config * feat: move defineMcFlyConfig to config package * feat: programmatically build nitro dev server * chore: bump versions * feat: spread nitro config if exists * chore: use nitro build programmatically * feat: use nitro programmatically in prepare command * feat: expose types for NitroConfig & McFlyConfig * feat: use c12 to resolve mcfly config * fix: too many symlinks * chore: skip tests for now * test: cheating * test: cheating * chore: update pnpm-lock
15 lines
391 B
JavaScript
15 lines
391 B
JavaScript
export { defineMcFlyConfig } from './define-mcfly-config.js'
|
|
import { nitroConfig } from './nitro-config.js'
|
|
|
|
/**
|
|
* @typedef {import('nitropack').NitroConfig} NitroConfig
|
|
* @typedef {import('./define-mcfly-config.js').McFlyConfig} McFlyConfig
|
|
*/
|
|
|
|
/**
|
|
* Returns the Nitro configuration for a McFly project
|
|
* @returns {NitroConfig}
|
|
*/
|
|
export default function () {
|
|
return nitroConfig
|
|
}
|