Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
os: [ubuntu-latest, windows-latest]

steps:
- name: Harden Runner
Expand Down
7 changes: 6 additions & 1 deletion apps/site/app/robots.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@ export default robots;

// Enforces that this route is used as static rendering
// @see https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config#dynamic
export const dynamic = 'error';
export const dynamic = 'force-static';

// Ensures that this endpoint is invalidated and re-executed every X minutes
// so that when new deployments happen, the data is refreshed
// @see https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config#revalidate
export const revalidate = false;
7 changes: 6 additions & 1 deletion apps/site/app/sitemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,9 @@ export default sitemap;

// Enforces that this route is used as static rendering
// @see https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config#dynamic
export const dynamic = 'error';
export const dynamic = 'force-static';

// Ensures that this endpoint is invalidated and re-executed every X minutes
// so that when new deployments happen, the data is refreshed
// @see https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config#revalidate
export const revalidate = false;
8 changes: 4 additions & 4 deletions apps/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"type": "module",
"scripts": {
"scripts:release-post": "cross-env NODE_NO_WARNINGS=1 node scripts/release-post/index.mjs",
"dev": "cross-env NODE_NO_WARNINGS=1 next dev --turbopack",
"dev": "cross-env NODE_NO_WARNINGS=1 next dev",
"serve": "npm run dev",
"build": "cross-env NODE_NO_WARNINGS=1 next build",
"build": "cross-env NODE_NO_WARNINGS=1 next build --turbopack",
"start": "cross-env NODE_NO_WARNINGS=1 next start",
"deploy": "cross-env NEXT_PUBLIC_STATIC_EXPORT=true npm run build",
"deploy": "cross-env NEXT_PUBLIC_STATIC_EXPORT=true NODE_NO_WARNINGS=1 next build",
"check-types": "tsc --noEmit",
"lint:js": "eslint \"**/*.{js,mjs,ts,tsx}\"",
"lint:snippets": "node ./scripts/lint-snippets/index.mjs",
Expand Down Expand Up @@ -43,7 +43,7 @@
"github-slugger": "~2.0.0",
"glob": "~11.0.1",
"gray-matter": "~4.0.3",
"next": "15.2.4",
"next": "15.3.0",
"next-intl": "~4.0.2",
"next-themes": "~0.4.6",
"postcss": "~8.5.3",
Expand Down
Loading
Loading