Skip to content

Commit 24e8d03

Browse files
committed
Refactor build scripts in package.json to remove turbopack; add type annotation in postcss.config.mjs; simplify font-family in globals.css.
1 parent 33e09f7 commit 24e8d03

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

app/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
body {
1818
background: var(--background);
1919
color: var(--foreground);
20-
font-family: var(--font-geist-sans), system-ui, sans-serif;
20+
font-family: system-ui, sans-serif;
2121
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"dev": "next dev --turbopack",
7-
"build": "next build --turbopack",
6+
"dev": "next dev",
7+
"build": "next build",
88
"start": "next start",
99
"lint": "eslint",
1010
"export": "next build && next export"

postcss.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** @type {import('postcss-load-config').Config} */
12
const config = {
23
plugins: {
34
tailwindcss: {},

0 commit comments

Comments
 (0)