@3cr/viewer-browser 0.0.3 → 0.0.4

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": "@3cr/viewer-browser",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "main": "./dist/3cr-viewer-browser.js",
5
5
  "module": "dist/3cr-viewer-browser.js",
6
6
  "homepage": "https://docs.3cr.singular.health",
package/vite.config.mts CHANGED
@@ -39,17 +39,17 @@ export default defineConfig({
39
39
  // make sure to externalize deps that shouldn't be bundled
40
40
  // into your library
41
41
  external: [
42
- // "vue",
43
- // "vuetify",
44
- // "vite/client",
45
- // "vite-plugin-vue-layouts/client",
46
- // "unplugin-vue-router/client"
42
+ "vue",
43
+ "vuetify",
44
+ "vite/client",
45
+ "vite-plugin-vue-layouts/client",
46
+ "unplugin-vue-router/client"
47
47
  ],
48
48
  output: {
49
49
  // Provide global variables to use in the UMD build
50
50
  // for externalized deps
51
51
  globals: {
52
- // vue: 'Vue',
52
+ vue: 'Vue',
53
53
  },
54
54
  },
55
55
  },