Skip to content

Commit 4927e95

Browse files
committed
fix: build
1 parent 5d5929a commit 4927e95

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: pnpm install
2929

3030
- name: Lint
31-
run: pnpm run lint
31+
run: pnpm test:lint
3232

3333
- name: Typecheck
34-
run: pnpm run typecheck
34+
run: pnpm test:tscheck

app/assets/css/main.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33

44
@font-face {
55
font-family: 'Sentient';
6-
src: url('/Sentient-Extralight.woff') format('woff');
6+
src: url('/fonts/Sentient-Extralight.woff') format('woff');
77
font-weight: 200;
88
font-style: normal;
99
font-display: swap;
1010
}
1111

1212
@font-face {
1313
font-family: 'Sentient';
14-
src: url('/Sentient-LightItalic.woff') format('woff');
14+
src: url('/fonts/Sentient-LightItalic.woff') format('woff');
1515
font-weight: 300;
1616
font-style: italic;
1717
font-display: swap;

nuxt.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export default defineNuxtConfig({
4444
routeRules: {
4545
'/': { prerender: true },
4646
'/docs': { redirect: { statusCode: 301, to: '/docs/getting-started' } },
47+
'/docs/**': { prerender: false },
4748
},
4849

4950
compatibilityDate: '2025-10-01',

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"build": "nuxt build",
88
"dev": "nuxt dev",
99
"preview": "nuxt preview",
10+
"start": "node .output/server/index.mjs",
1011
"test:lint": "oxlint . && oxfmt --check",
1112
"test:tscheck": "nuxt typecheck",
1213
"lint:fix": "oxlint --fix . && oxfmt --no-error-on-unmatched-pattern",

0 commit comments

Comments
 (0)