You've already forked AstralRinth
forked from didirus/AstralRinth
* build: deploy on both environments * build: missing whitespace * build: add path filter * build: add sentry env * build: inherit secrets * remove if check * Revert "remove if check" This reverts commit b2ffe1d611269ddaf13bdbfacfdb89cd40316c29. * remove if check 2 * Fix Wrangler env * Fix Wrangler env but for real this time * Alternative method of getting URLs * Check for environment instead * Fix comment * Clickable commit * Set PREVIEW build var * Fix commit shown in comment * Fix linting errors * ) * add preview banner * prepr * prepr again * .. --------- Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com>
14 lines
457 B
TypeScript
14 lines
457 B
TypeScript
import { sentryCloudflareNitroPlugin } from '@sentry/nuxt/module/plugins'
|
|
|
|
declare const __SENTRY_RELEASE__: string
|
|
declare const __SENTRY_ENVIRONMENT__: string
|
|
|
|
export default defineNitroPlugin(
|
|
sentryCloudflareNitroPlugin({
|
|
dsn: 'https://9cf8f56ab7055ab6b1042fad535f2a44@o485889.ingest.us.sentry.io/4510709722185728',
|
|
tracesSampleRate: 0.0001, // match with wrangler.jsonc
|
|
release: __SENTRY_RELEASE__,
|
|
environment: __SENTRY_ENVIRONMENT__,
|
|
}),
|
|
)
|