@pinegrow/vite-plugin 3.0.19 → 3.0.21
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/dist/index.cjs +1 -1
- package/package.json +1 -1
- package/types.d.ts +8 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -65,6 +65,14 @@ export interface LiveDesignerOptions {
|
|
|
65
65
|
layouts: string
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
+
/**
|
|
69
|
+
* Dev-server URLs. This is generally not required, but if used as part of any troubleshooting, these URLs must be configured within the CLI to make sure the URLs are fixed. For eg, use the `server.host` & `server.port` options for Vite - https://vitejs.dev/config/server-options.html#server-options).
|
|
70
|
+
*/
|
|
71
|
+
devServerUrls?: {
|
|
72
|
+
local?: string
|
|
73
|
+
network?: string
|
|
74
|
+
}
|
|
75
|
+
|
|
68
76
|
/**
|
|
69
77
|
* Preferred format for icons in icon-picker - https://github.com/antfu/icones/blob/main/src/utils/case.ts
|
|
70
78
|
* * @default 'unocss' // For eg, i-material-symbols-home
|