Skip to content

Commit

Permalink
Fix some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lukevella committed Mar 1, 2025
1 parent 1f31271 commit 14ad13e
Show file tree
Hide file tree
Showing 6 changed files with 472 additions and 437 deletions.
22 changes: 12 additions & 10 deletions apps/web/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,6 @@ const nextConfig = {
"@rallly/posthog",
"@rallly/emails",
],
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"],
});

return config;
},
eslint: {
ignoreDuringBuilds: true,
},
Expand All @@ -58,9 +50,19 @@ const nextConfig = {
},
];
},
serverExternalPackages: ["@aws-sdk", "@sentry/nextjs"],
experimental: {
// necessary for server actions using aws-sdk
serverComponentsExternalPackages: ["@aws-sdk"],
turbo: {
rules: {
"*.svg": {
loaders: ["@svgr/webpack"],
as: "*.js",
},
},
},
},
devIndicators: {
position: "bottom-right",
},
};

Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@rallly/posthog": "*",
"@rallly/tailwind-config": "*",
"@rallly/ui": "*",
"@sentry/nextjs": "*",
"@sentry/nextjs": "^9.3.0",
"@svgr/webpack": "^6.5.1",
"@t3-oss/env-nextjs": "^0.11.0",
"@tanstack/react-query": "^4.0.0",
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,16 @@
],
"devDependencies": {
"@prisma/client": "^6.4.1",
"@sentry/nextjs": "^8.49.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"dotenv-cli": "^7.1.0",
"framer-motion": "^10.16.4",
"next": "^14.2.21",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.4",
"turbo": "^2.1.1",
"typescript": "^5.2.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/posthog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
},
"peerDependencies": {
"next": "^14.2.13",
"react": "^18.2.0"
"react": "^19.0.0"
}
}
4 changes: 2 additions & 2 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
"@radix-ui/react-slot": "^1.0.1",
"@radix-ui/react-switch": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.0.6",
"@rallly/icons": "*",
"@rallly/languages": "*",
"@rallly/tailwind-config": "*",
"class-variance-authority": "^0.7.0",
"class-variance-authority": "^0.7.1",
"clsx": "^1.2.1",
"cmdk": "^0.2.1",
"tailwind-merge": "^1.12.0"
Expand Down
Loading

0 comments on commit 14ad13e

Please sign in to comment.