vue-kaspa-cli 0.1.2 → 0.1.3

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": "vue-kaspa-cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "description": "Scaffold a Vue 3 or Nuxt app wired to the Kaspa blockchain",
6
6
  "license": "MIT",
@@ -5,15 +5,4 @@ export default defineNuxtConfig({
5
5
  network: 'mainnet',
6
6
  autoConnect: true,
7
7
  },
8
- // SharedArrayBuffer requires COOP/COEP headers in both dev and production.
9
- nitro: {
10
- routeRules: {
11
- '/**': {
12
- headers: {
13
- 'Cross-Origin-Embedder-Policy': 'require-corp',
14
- 'Cross-Origin-Opener-Policy': 'same-origin',
15
- },
16
- },
17
- },
18
- },
19
8
  })