@kupola/kupola 1.9.12 → 1.9.13
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/package.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* @param {boolean} [options.autoImport=true] - Auto import useDeps/useQuery
|
|
15
15
|
* @param {boolean} [options.devTools=true] - Enable dev tools in dev mode
|
|
16
16
|
* @param {string} [options.cssPath] - Custom CSS path
|
|
17
|
-
* @param {boolean} [options.themePreload=
|
|
17
|
+
* @param {boolean} [options.themePreload=false] - Auto inject theme preload script
|
|
18
18
|
*/
|
|
19
19
|
export function kupola(options = {}) {
|
|
20
20
|
const {
|
|
@@ -22,7 +22,7 @@ export function kupola(options = {}) {
|
|
|
22
22
|
autoImport = true,
|
|
23
23
|
devTools = true,
|
|
24
24
|
cssPath = null,
|
|
25
|
-
themePreload =
|
|
25
|
+
themePreload = false,
|
|
26
26
|
} = options;
|
|
27
27
|
|
|
28
28
|
let isDev = false;
|