gitextract_f2taf_wd/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── question.md │ └── workflows/ │ ├── ci.yml │ └── size-limit.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .release-it.cjs ├── .size-limit.cjs ├── CHANGELOG.md ├── LICENSE ├── README.md ├── build.config.ts ├── docs/ │ ├── .gitignore │ ├── .nvmrc │ ├── README.md │ ├── content/ │ │ ├── en/ │ │ │ ├── configuration/ │ │ │ │ ├── options.md │ │ │ │ └── runtime-config.md │ │ │ ├── getting-started/ │ │ │ │ └── setup.md │ │ │ ├── guide/ │ │ │ │ ├── enrich-events.md │ │ │ │ ├── lazy-loading.md │ │ │ │ ├── migration.md │ │ │ │ ├── performance.md │ │ │ │ ├── profiling.md │ │ │ │ ├── releases.md │ │ │ │ ├── session-replay.md │ │ │ │ ├── usage.md │ │ │ │ └── user-feedback.md │ │ │ └── index.md │ │ └── settings.json │ ├── nuxt.config.js │ ├── package.json │ └── patches/ │ └── @nuxtjs+tailwindcss+3.4.3.patch ├── eslint.config.mjs ├── netlify.toml ├── package.json ├── renovate.json ├── size-check/ │ ├── base/ │ │ ├── nuxt.config.cjs │ │ └── pages/ │ │ └── index.vue │ ├── lazy/ │ │ ├── nuxt.config.cjs │ │ └── pages/ │ │ └── index.vue │ ├── lazy+tracing/ │ │ ├── nuxt.config.cjs │ │ └── pages/ │ │ └── index.vue │ ├── package.json │ ├── replay/ │ │ ├── nuxt.config.cjs │ │ └── pages/ │ │ └── index.vue │ ├── tracing/ │ │ ├── nuxt.config.cjs │ │ └── pages/ │ │ └── index.vue │ └── typescript/ │ ├── config/ │ │ └── server.config.ts │ ├── nuxt.config.ts │ ├── pages/ │ │ └── index.vue │ └── tsconfig.json ├── src/ │ ├── hooks.ts │ ├── kit-shim.ts │ ├── module.ts │ ├── options.ts │ ├── templates/ │ │ ├── client.shared.js │ │ ├── options.ejs │ │ ├── plugin.client.js │ │ ├── plugin.lazy.js │ │ ├── plugin.mocked.js │ │ └── plugin.server.js │ ├── types/ │ │ ├── configuration.d.ts │ │ ├── extend.d.ts │ │ ├── index.d.ts │ │ └── sentry.d.ts │ └── utils.ts ├── test/ │ ├── default.test.ts │ ├── fixture/ │ │ ├── default/ │ │ │ ├── config/ │ │ │ │ └── custom-client-integrations.js │ │ │ ├── nuxt.config.cjs │ │ │ └── pages/ │ │ │ └── index.vue │ │ ├── lazy/ │ │ │ ├── config/ │ │ │ │ └── custom-client-integrations.js │ │ │ ├── nuxt.config.cjs │ │ │ └── pages/ │ │ │ └── index.vue │ │ ├── typescript/ │ │ │ ├── api/ │ │ │ │ └── index.ts │ │ │ ├── config/ │ │ │ │ ├── custom-client-integrations.ts │ │ │ │ └── server.config.ts │ │ │ ├── nuxt.config.ts │ │ │ ├── pages/ │ │ │ │ ├── disabled-integrations.vue │ │ │ │ └── index.vue │ │ │ └── tsconfig.json │ │ └── with-lazy-config/ │ │ ├── nuxt.config.cjs │ │ └── pages/ │ │ ├── index.vue │ │ └── mounted.vue │ ├── lazy.test.ts │ ├── options.test.ts │ ├── tsconfig.json │ ├── typescript.test.ts │ ├── utils.ts │ └── with-lazy-config.test.ts ├── tsconfig.json ├── types/ │ └── vuex.d.ts └── vitest.config.ts