flecks/packages/fleck/src/server/index.js

16 lines
300 B
JavaScript
Raw Normal View History

2022-02-25 04:58:08 -06:00
import commands from './commands';
export const hooks = {
'@flecks/core.commands': commands,
'@flecks/core.config': () => ({
/**
2023-11-30 21:41:42 -06:00
* Webpack stats configuration.
*/
stats: {
colors: true,
2023-11-30 21:41:42 -06:00
errorDetails: true,
},
}),
'@flecks/core.targets': () => ['fleck'],
2022-02-25 04:58:08 -06:00
};