We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c933e4 commit 0d2e20fCopy full SHA for 0d2e20f
packages/overmind-website/examples/api/config_merge.ts
@@ -9,10 +9,7 @@ import { merge } from 'overmind/config'
9
import * as moduleA from './moduleA'
10
import * as moduleB from './moduleB'
11
12
-const config = merge({
13
- moduleA,
14
- moduleB
15
-})
+const config = merge(moduleA, moduleB)
16
17
declare module 'overmind' {
18
interface IConfig extends TConfig<typeof config> {}
@@ -31,10 +28,7 @@ import { merge } from 'overmind/config'
31
28
32
29
33
30
34
35
36
37
38
39
export default new Overmind(config)
40
`,
0 commit comments