@rozenite/vite-plugin 1.0.0-alpha.0 → 1.0.0-alpha.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/dist/index.cjs CHANGED
@@ -229,7 +229,7 @@ const rozeniteClientPlugin = () => {
229
229
  description: packageJSON.description,
230
230
  panels: panels.map((panel) => ({
231
231
  name: panel.label,
232
- source: panel.htmlFile
232
+ source: "/" + panel.htmlFile
233
233
  }))
234
234
  })
235
235
  });
package/dist/index.js CHANGED
@@ -226,7 +226,7 @@ const rozeniteClientPlugin = () => {
226
226
  description: packageJSON.description,
227
227
  panels: panels.map((panel) => ({
228
228
  name: panel.label,
229
- source: panel.htmlFile
229
+ source: "/" + panel.htmlFile
230
230
  }))
231
231
  })
232
232
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rozenite/vite-plugin",
3
- "version": "1.0.0-alpha.0",
3
+ "version": "1.0.0-alpha.1",
4
4
  "description": "Vite plugin for developing React Native DevTools plugins with hot reload and development tools",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",