fix(ssr): fix big ahh button size
All checks were successful
deploy / deploy (push) Successful in 1m19s

This commit is contained in:
Lee 2023-11-08 08:52:35 +00:00
parent 6ec834ddc5
commit 9637993471
2 changed files with 2 additions and 7 deletions

@ -1,7 +1,4 @@
const nextBuildId = require("next-build-id");
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: false,
});
/** @type {import('next').NextConfig} */
const nextConfig = {
@ -60,9 +57,7 @@ const nextConfig = {
},
};
module.exports = withBundleAnalyzer(nextConfig);
// Injected content via Sentry wizard below
module.exports = nextConfig;
const { withSentryConfig } = require("@sentry/nextjs");

@ -25,7 +25,7 @@ export default function Button({
const base = (
<button
className={clsx(
"flex items-center justify-center gap-2 rounded-md px-4 py-2",
"flex items-center justify-center gap-2 rounded-md p-1",
color,
className,
)}