UNPKG

@modern-js/server-core

Version:

A Progressive React Framework for modern web development.

12 lines (11 loc) 216 B
import { merge } from "ts-deepmerge"; const loadConfig = ({ cliConfig, serverConfig }) => { const config = merge({ ...cliConfig, plugins: [] }, serverConfig); return config; }; export { loadConfig };