@pinegrow/vite-plugin 3.0.72-beta.0 → 3.0.72-beta.1

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/README.md CHANGED
@@ -133,34 +133,13 @@ export interface LiveDesignerOptions {
133
133
  * The network URL is set when when the dev-server is running on a remote server/machine.
134
134
  * Make sure the URLs are fixed via the CLI configurations, so that the next available port is not auto-picked if the fixed URL's port was already used by some other process. For Vite, use the `server.host` & `server.port` options for Vite - https://vitejs.dev/config/server-options.html#server-options).
135
135
  */
136
- devServerUrls?: {
137
- local?: string
138
- network?: string
139
- hmr?: string
140
- }
141
-
142
- /**
143
- * Debounce delay, in milliseconds, for Pinegrow-triggered Vite watcher change events.
144
- * This coalesces live-edit snapshot bursts before Vite/Nuxt HMR processing.
145
- * @default 75
146
- */
147
- watcherEventDelay?: number
148
-
149
- /**
150
- * Socket.IO transports used to connect the dev server to Pinegrow.
151
- * Defaults to websocket-only to avoid polling/upgrade resets in Nuxt dev servers.
152
- */
153
- socketTransports?: string[]
154
-
155
- /**
156
- * Allow Socket.IO transport upgrades. Disabled by default for deterministic local
157
- * Pinegrow connections.
158
- * @default false
159
- */
160
- socketUpgrade?: boolean
161
-
162
- /**
163
- * Preferred format for icons in icon-picker - https://github.com/antfu/icones/blob/main/src/utils/case.ts
136
+ devServerUrls?: {
137
+ local?: string
138
+ network?: string
139
+ }
140
+
141
+ /**
142
+ * Preferred format for icons in icon-picker - https://github.com/antfu/icones/blob/main/src/utils/case.ts
164
143
  * * @default 'unocss' // For eg, i-material-symbols-home
165
144
  * * When using Nuxt-Icon, you need to change this to 'iconify'
166
145
  *