Skip to content

Commit

Permalink
remove sentry plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
kevanhannah committed May 7, 2023
1 parent 29e043a commit f13187b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 124 deletions.
128 changes: 20 additions & 108 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion sveltekit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"@sentry/tracing": "^7.50.0"
},
"devDependencies": {
"@sentry/vite-plugin": "^0.7.2",
"@sveltejs/adapter-netlify": "^2.0.6",
"@sveltejs/kit": "^1.15.8",
"autoprefixer": "^10.4.14",
Expand Down
3 changes: 0 additions & 3 deletions sveltekit/svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ import adapter from '@sveltejs/adapter-netlify';
import preprocess from 'svelte-preprocess';

const config = {
compilerOptions: {
enableSourcemap: true,
},
kit: {
adapter: adapter({
split: true,
Expand Down
13 changes: 1 addition & 12 deletions sveltekit/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,9 @@
import { defineConfig } from 'vite';
import { sveltekit } from '@sveltejs/kit/vite';
import { sentryVitePlugin } from '@sentry/vite-plugin';

export default defineConfig({
build: {
sourcemap: true,
},
plugins: [
sveltekit(),
sentryVitePlugin({
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
authToken: process.env.SENTRY_AUTH_TOKEN,
sourcemaps: {
assets: './build/**',
},
}),
],
plugins: [sveltekit()],
});

0 comments on commit f13187b

Please sign in to comment.