fix: storybook font rendering and shared fonts module #1

Merged
ilia merged 74 commits from feat/portfolio-setup into main 2026-05-18 18:45:22 +00:00
2 changed files with 9 additions and 5 deletions
Showing only changes of commit ced77f6f07 - Show all commits
+1 -1
View File
@@ -7,7 +7,7 @@
}, },
"files": { "files": {
"ignoreUnknown": false, "ignoreUnknown": false,
"includes": ["src/**/*", "app/**/*"] "includes": ["src/**/*", "app/**/*", "*.ts", "*.tsx", "*.js", "*.jsx"]
}, },
"formatter": { "formatter": {
"enabled": true, "enabled": true,
+8 -4
View File
@@ -1,8 +1,12 @@
import type { NextConfig } from 'next' import type { NextConfig } from 'next';
const isExport = process.env.NODE_ENV === 'production';
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
output: 'export', /* output: 'export' only applies at build time — enabling it in dev mode
* breaks route handlers (incompatible with force-dynamic in Next.js 16) */
...(isExport ? { output: 'export' } : {}),
images: { unoptimized: true }, images: { unoptimized: true },
} };
export default nextConfig export default nextConfig;