fix(ssr): fix big ahh button size
All checks were successful
deploy / deploy (push) Successful in 1m19s
All checks were successful
deploy / deploy (push) Successful in 1m19s
This commit is contained in:
parent
6ec834ddc5
commit
9637993471
@ -1,7 +1,4 @@
|
|||||||
const nextBuildId = require("next-build-id");
|
const nextBuildId = require("next-build-id");
|
||||||
const withBundleAnalyzer = require("@next/bundle-analyzer")({
|
|
||||||
enabled: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
@ -60,9 +57,7 @@ const nextConfig = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = withBundleAnalyzer(nextConfig);
|
module.exports = nextConfig;
|
||||||
|
|
||||||
// Injected content via Sentry wizard below
|
|
||||||
|
|
||||||
const { withSentryConfig } = require("@sentry/nextjs");
|
const { withSentryConfig } = require("@sentry/nextjs");
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ export default function Button({
|
|||||||
const base = (
|
const base = (
|
||||||
<button
|
<button
|
||||||
className={clsx(
|
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,
|
color,
|
||||||
className,
|
className,
|
||||||
)}
|
)}
|
||||||
|
Loading…
Reference in New Issue
Block a user