@nitra/vite-boot 1.0.6 → 1.0.7

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": "@nitra/vite-boot",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Vite boot",
5
5
  "type": "module",
6
6
  "exports": {
package/src/apollo.js CHANGED
@@ -58,7 +58,7 @@ const wsLink = new WebSocketLink({
58
58
  return {
59
59
  headers: {
60
60
  Authorization: `Bearer ${token}`,
61
- 'x-hasura-role': __HASURA_ROLE__
61
+ 'x-hasura-role': _HASURA_ROLE_
62
62
  }
63
63
  }
64
64
  }
package/src/sentry.js CHANGED
@@ -7,8 +7,8 @@ import { Integrations } from '@sentry/tracing'
7
7
  export const bootSentry = (app, router) => {
8
8
  Sentry.init({
9
9
  app,
10
- dsn: __SENTRY_DSN__,
11
- release: __GITHUB_SHA__,
10
+ dsn: _SENTRY_DSN_,
11
+ release: _GITHUB_SHA_,
12
12
  integrations: [
13
13
  new Integrations.BrowserTracing({
14
14
  routingInstrumentation: Sentry.vueRouterInstrumentation(router)