@donotdev/core 0.0.28 → 0.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +94 -7
- package/index.js +18 -18
- package/package.json +4 -4
- package/server.d.ts +92 -6
- package/server.js +44 -43
- package/vite/index.d.ts +2 -0
- package/vite/index.js +56 -53
package/vite/index.d.ts
CHANGED
|
@@ -933,6 +933,8 @@ interface ConfigOptions {
|
|
|
933
933
|
envPrefix?: string | string[];
|
|
934
934
|
/** Additional Vite plugins */
|
|
935
935
|
plugins?: any[];
|
|
936
|
+
/** Enable DnDev dashboard plugin (terminal, file API, HMR watcher). Only for the dndev app. */
|
|
937
|
+
dndev?: boolean | Record<string, unknown>;
|
|
936
938
|
}
|
|
937
939
|
|
|
938
940
|
/**
|