UNPKG

311 BJavaScriptView Raw
1// @flow
2
3import loadConfig from '@lemonmade/react-universal-config';
4
5import {start} from '../../server';
6
7export const command = 'start';
8export const describe = 'Run the production server';
9export const builder = {};
10
11export async function handler() {
12 const config = await loadConfig();
13 start(config);
14}