We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b0ba7b commit 06dbdf5Copy full SHA for 06dbdf5
.gitignore
@@ -4,7 +4,8 @@
4
.next
5
.env
6
bun.lock
7
-src/menu.json
+# Currently not built from TerminusCMS
8
+# src/menu.json
9
10
# dependencies
11
/node_modules
package.json
@@ -5,8 +5,10 @@
"scripts": {
"sitemap": "next-sitemap",
"prebuild": "node src/prebuild/menu.mjs",
- "dev": "npm run prebuild && next dev",
- "build": "npm run prebuild && next build",
+ "dev": "next dev",
+ "build": "next build",
+ "cmsdev": "npm run prebuild && next dev",
+ "cmsbuild": "npm run prebuild && next build",
12
"postbuild": "npm run sitemap",
13
"start": "next start",
14
"lint": "next lint"
0 commit comments