@vertesia/create-plugin 0.72.0 → 0.73.0

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertesia/create-plugin",
3
- "version": "0.72.0",
3
+ "version": "0.73.0",
4
4
  "description": "Initialize a Vertesia plugin package",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,4 +1,4 @@
1
- import { VertesiaShell } from '@vertesia/ui/shell'
1
+ import { StandaloneApp, VertesiaShell } from '@vertesia/ui/shell'
2
2
  import { StrictMode } from 'react'
3
3
  import { createRoot } from 'react-dom/client'
4
4
  import './index.css'
@@ -8,9 +8,11 @@ import { App } from './app'
8
8
  import "./env"
9
9
 
10
10
  createRoot(document.getElementById('root')!).render(
11
- <StrictMode>
12
- <VertesiaShell>
13
- <RouterProvider routes={[{ path: "*", Component: App }]} />
14
- </VertesiaShell>
15
- </StrictMode>,
11
+ <StrictMode>
12
+ <VertesiaShell>
13
+ <StandaloneApp name=""> {/* <---- put the app name here */}
14
+ <RouterProvider routes={[{ path: "*", Component: App }]} />
15
+ </StandaloneApp>
16
+ </VertesiaShell>
17
+ </StrictMode>,
16
18
  )