Skip to content

Commit

Permalink
chores: recurring health check
Browse files Browse the repository at this point in the history
  • Loading branch information
FleetAdmiralJakob committed Dec 11, 2024
1 parent 8e9cdbc commit 46a3c26
Show file tree
Hide file tree
Showing 5 changed files with 485 additions and 303 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
# Clerk
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY="pk_test_.."
CLERK_SECRET_KEY="sk_test_..."
CLERK_ENCRYPTION_KEY="..." # You sometimes have to generate this key and it is used to encrypt sensitive data. You can generate it with `openssl rand --hex 32`. See more: https://clerk.com/docs/references/nextjs/clerk-middleware#dynamic-keys


# Posthog
Expand Down
7 changes: 7 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import withSerwistInit from "@serwist/next";
import createJiti from "jiti";
import { withAxiom } from "next-axiom";

// @ts-check

const withSerwist = withSerwistInit({
swSrc: "src/sw.ts",
swDest: "public/sw.js",
Expand Down Expand Up @@ -92,6 +94,11 @@ const config = withSentryConfig(baseConfig, {
// https://docs.sentry.io/product/crons/
// https://vercel.com/docs/cron-jobs
automaticVercelMonitors: true,

sourcemaps: {
disable: false,
deleteSourcemapsAfterUpload: true,
},
});

export default config;
17 changes: 6 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@sentry/nextjs": "^8",
"@serwist/next": "9.0.11",
"@t3-oss/env-nextjs": "^0.11.1",
"babel-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
"babel-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"convex": "^1.17.3",
Expand All @@ -55,12 +55,13 @@
"next-themes": "^0.4.3",
"npm-run-all2": "^7.0.1",
"posthog-js": "^1.189.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.53.2",
"react-intersection-observer": "^9.13.1",
"react-resizable-panels": "^2.1.7",
"react-responsive": "^10.0.0",
"react-scan": "^0.0.42",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
Expand All @@ -74,8 +75,8 @@
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.0",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"autoprefixer": "^10.4.20",
Expand All @@ -96,11 +97,5 @@
"engineStrict": true,
"engines": {
"pnpm": "9.15.0"
},
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
}
}
}
Loading

0 comments on commit 46a3c26

Please sign in to comment.