diff --git a/app/[slug]/page.tsx b/app/[slug]/page.tsx index 81d4a16..90ff809 100644 --- a/app/[slug]/page.tsx +++ b/app/[slug]/page.tsx @@ -31,7 +31,7 @@ export default async function ({ return (
-
+
-
+
+
{ const result: IYKRefResponse = await response.json(); - // return DEBUG_VALUE; + // return DEBUG_VALUE as IYKRefResponse; return result; }; diff --git a/tailwind.config.js b/tailwind.config.js index c14b080..f03c4cf 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -10,7 +10,12 @@ module.exports = { './src/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { - extend: {}, + extend: { + maxWidth: { + md2: '420px', + md3: '458px', + }, + }, }, plugins: [], };