- remove nitropack - new @mcflyjs/fastify package - test-core workspace for testing the new setup
9 lines
204 B
JavaScript
9 lines
204 B
JavaScript
import { loadConfig } from 'c12'
|
|
|
|
export async function getMcFlyConfig() {
|
|
const { config: mcflyConfig, configFile } = await loadConfig({
|
|
name: 'mcfly',
|
|
})
|
|
|
|
return { mcflyConfig, configFile }
|
|
}
|