flecks/packages/server/src/index.js

25 lines
459 B
JavaScript
Raw Normal View History

2022-02-25 04:58:08 -06:00
import {Hooks} from '@flecks/core';
export default {
[Hooks]: {
2022-03-08 16:03:06 -06:00
'@flecks/core.config': () => ({
2022-03-09 14:43:54 -06:00
/**
* Whether HMR is enabled.
*/
2022-02-28 05:16:24 -06:00
hot: false,
2022-03-09 14:43:54 -06:00
/**
* Whether the Node inspector is enabled.
*/
2022-02-28 05:16:24 -06:00
inspect: false,
2022-03-09 14:43:54 -06:00
/**
* Whether node profiling is enabled.
*/
2022-02-28 05:16:24 -06:00
profile: false,
2022-03-09 14:43:54 -06:00
/**
* Whether to start the server after building.
*/
2022-02-28 05:16:24 -06:00
start: false,
2022-02-25 04:58:08 -06:00
}),
},
};