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 810f467 commit 6edb25bCopy full SHA for 6edb25b
README.md
@@ -50,7 +50,7 @@
50
51
## Config
52
53
-#### Use local config (nvton.ts)
+#### Use local config (nvton.config.ts)
54
55
```ts
56
export default {
packages/nvton/src/nvton.ts
@@ -68,9 +68,10 @@ export class NVTON {
68
name: 'nvton',
69
rcFile: false,
70
envName: false,
71
+ defaultConfig: DEFAULT_CONFIG
72
});
73
- this.options = defu(defu(options, config), DEFAULT_CONFIG);
74
+ this.options = defu(options, config);
75
76
res(this.options);
77
0 commit comments