Skip to content

Commit baf3807

Browse files
feat: enable turbopack
1 parent 0f3e134 commit baf3807

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

next.config.mjs

-4
This file was deleted.

next.config.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import type { NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
4+
/* config options here */
5+
};
6+
7+
export default nextConfig;

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"scripts": {
2525
"format": "prettier --write .",
26-
"dev": "next dev",
26+
"dev": "next dev --turbopack",
2727
"build": "next build",
2828
"start": "next start",
2929
"lint": "next lint"

0 commit comments

Comments
 (0)