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 bb10607 commit 698db35Copy full SHA for 698db35
2 files changed
Makefile
@@ -98,6 +98,10 @@ endif
98
serve: build
99
$(YARN) serve$(YARN_ACTION_SUFFIX)
100
101
+.PHONY: serve-next
102
+serve-next: build-next
103
+ $(YARN) serve$(YARN_ACTION_SUFFIX)
104
+
105
.PHONY: full
106
full: clean build
107
package.json
@@ -7,6 +7,7 @@
7
"start": "docusaurus start",
8
"start-container": "docusaurus start -h 0.0.0.0",
9
"start-next": "BUILD_NEXT=true docusaurus start",
10
+ "start-next-container": "BUILD_NEXT=true docusaurus start -h 0.0.0.0",
11
"build": "DOCUSAURUS_IGNORE_SSG_WARNINGS=true docusaurus build",
12
"build-next": "BUILD_NEXT=true yarn build",
13
"swizzle": "docusaurus swizzle",
0 commit comments