e2814943e9
* [feature] grids * Shows relative grids at different zoom levels * Update colors * Restores vec and intersect to monorepo, changes vec.round to vec.toFixed, adds vec.snap * Snapping in translate and transforms, fix shortcut * fix bugs in build * use grid size for nudge too * update scripts * Update grid.tsx * Update grid.tsx * Fixed! * Update grid.tsx * Fix package imports * Update Editor.tsx * Improve tsconfigs, imports * Fix tiny arrow bugs, snap starting points to grid * Update tsconfig.base.json * Update shape-styles.ts * Fix example tsconfig * Fix translate type error * Fix types, paths Co-authored-by: Steve Ruiz <steveruizok@gmail.com>
33 lines
1,017 B
TypeScript
33 lines
1,017 B
TypeScript
import * as Sentry from '@sentry/node'
|
|
import { RewriteFrames } from '@sentry/integrations'
|
|
|
|
export function init(): void {
|
|
if (!process.env.NEXT_PUBLIC_SENTRY_DSN) return
|
|
|
|
const integrations = []
|
|
|
|
if (process.env.NEXT_IS_SERVER === 'true' && process.env.NEXT_PUBLIC_SENTRY_SERVER_ROOT_DIR) {
|
|
// For Node.js, rewrite Error.stack to use relative paths, so that source
|
|
// maps starting with ~/_next map to files in Error.stack with path
|
|
// app:///_next
|
|
integrations.push(
|
|
new RewriteFrames({
|
|
iteratee: (frame) => {
|
|
frame.filename = frame?.filename?.replace(
|
|
process.env.NEXT_PUBLIC_SENTRY_SERVER_ROOT_DIR as string,
|
|
'app:///'
|
|
)
|
|
frame.filename = frame?.filename?.replace('.next', '_next')
|
|
return frame
|
|
},
|
|
})
|
|
)
|
|
}
|
|
|
|
Sentry.init({
|
|
enabled: process.env.NODE_ENV === 'production',
|
|
integrations,
|
|
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
|
release: process.env.NEXT_PUBLIC_COMMIT_SHA,
|
|
})
|
|
}
|