nx/packages/next/src/utils/config.fixture.ts

8 lines
149 B
TypeScript

module.exports = (phase, config, context) => {
return {
...config,
myPhase: phase,
myCustomValue: context.options.customValue,
};
};