Updated dependencies, reintroduced bundle analyzer (#159)
This commit is contained in:
committed by
GitHub
parent
f5a961f155
commit
f2c74bd11c
@@ -1,3 +1,5 @@
|
||||
import withBundleAnalyzer from '@next/bundle-analyzer';
|
||||
|
||||
const IS_PRODUCTION = process.env.NODE_ENV === 'production';
|
||||
const SUPABASE_URL = process.env.NEXT_PUBLIC_SUPABASE_URL;
|
||||
const ENABLE_REACT_COMPILER = process.env.ENABLE_REACT_COMPILER === 'true';
|
||||
@@ -67,7 +69,9 @@ const config = {
|
||||
typescript: { ignoreBuildErrors: true },
|
||||
};
|
||||
|
||||
export default config;
|
||||
export default withBundleAnalyzer({
|
||||
enabled: process.env.ANALYZE === 'true',
|
||||
})(config);
|
||||
|
||||
function getRemotePatterns() {
|
||||
/** @type {import('next').NextConfig['remotePatterns']} */
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@edge-csrf/nextjs": "2.5.3-cloudflare-rc1",
|
||||
"@hookform/resolvers": "^3.10.0",
|
||||
"@hookform/resolvers": "^4.0.0",
|
||||
"@kit/accounts": "workspace:*",
|
||||
"@kit/admin": "workspace:*",
|
||||
"@kit/analytics": "workspace:*",
|
||||
@@ -61,7 +61,7 @@
|
||||
"@tanstack/react-table": "^8.20.6",
|
||||
"date-fns": "^4.1.0",
|
||||
"lucide-react": "^0.475.0",
|
||||
"next": "15.1.6",
|
||||
"next": "15.1.7",
|
||||
"next-sitemap": "^4.2.3",
|
||||
"next-themes": "0.4.4",
|
||||
"react": "19.0.0",
|
||||
@@ -77,10 +77,10 @@
|
||||
"@kit/eslint-config": "workspace:*",
|
||||
"@kit/prettier-config": "workspace:*",
|
||||
"@kit/tsconfig": "workspace:*",
|
||||
"@next/bundle-analyzer": "15.1.6",
|
||||
"@tailwindcss/postcss": "^4.0.5",
|
||||
"@next/bundle-analyzer": "15.1.7",
|
||||
"@tailwindcss/postcss": "^4.0.6",
|
||||
"@types/mdx": "^2.0.13",
|
||||
"@types/node": "^22.13.0",
|
||||
"@types/node": "^22.13.1",
|
||||
"@types/react": "19.0.8",
|
||||
"@types/react-dom": "19.0.3",
|
||||
"autoprefixer": "^10.4.20",
|
||||
@@ -88,8 +88,8 @@
|
||||
"dotenv-cli": "^8.0.0",
|
||||
"pino-pretty": "^13.0.0",
|
||||
"prettier": "^3.5.0",
|
||||
"supabase": "^2.9.6",
|
||||
"tailwindcss": "4.0.5",
|
||||
"supabase": "^2.12.0",
|
||||
"tailwindcss": "4.0.6",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
"typescript": "^5.7.3"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user