Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@ yarn-error.log*
next-env.d.ts

.tern-port

# playwright-mcp browser sessions
.playwright-mcp/
30 changes: 0 additions & 30 deletions next.config.js

This file was deleted.

17 changes: 17 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { withFontdue } from "fontdue-js/next/config";

// withFontdue installs everything the storefront needs — the rewrites that
// route requests to the right Fontdue site, image settings, and metadata
// workarounds — driven by NEXT_PUBLIC_FONTDUE_URL (see .env.local).
// Anything in here composes with it like a normal Next config.
export default withFontdue({
// Emit a self-contained server bundle (`.next/standalone`) so the app can
// run as `node server.js` on any Node host. Harmless on Vercel.
output: "standalone",
logging: {
fetches: {
fullUrl: true,
hmrRefreshes: true,
},
},
});
Loading