UNPKG

@frontity/core

Version:

The core package of the Frontity framework.

13 lines (10 loc) 234 B
import { FrontityConfig } from "@frontity/types/config"; /** * Create the Frontity configuration. * * @returns The Frontity config object. */ const config = (): FrontityConfig => ({ outDir: "build", }); export default config;