(options: Partial<Omit<Options, 'tracingOptions'>> = {})
| 10 | * Inits the Vue SDK |
| 11 | */ |
| 12 | export function init(options: Partial<Omit<Options, 'tracingOptions'>> = {}): Client | undefined { |
| 13 | const opts = { |
| 14 | defaultIntegrations: [...getDefaultIntegrations(options), vueIntegration()], |
| 15 | ...options, |
| 16 | }; |
| 17 | |
| 18 | applySdkMetadata(opts, 'vue'); |
| 19 | |
| 20 | const client = browserInit(opts); |
| 21 | |
| 22 | // Add vue-specific stringification |
| 23 | setNormalizeStringifier(normalizeStringifyValue); |
| 24 | |
| 25 | return client; |
| 26 | } |
nothing calls this directly
no test coverage detected