We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38b08c5 commit 3fb95aaCopy full SHA for 3fb95aa
.github/workflows/deploy-to-github-pages.yml
@@ -15,11 +15,20 @@ jobs:
15
- name: Checkout
16
uses: actions/checkout@v3
17
18
- - name: Install and Build website
+ - name: Setup node
19
+ uses: actions/setup-node@v3
20
+ with:
21
+ node-version: 21
22
+ cache: npm
23
+
24
+ - name: Install dependencies
25
run: |
- npm ci
- npm run build
26
+ npm install
27
28
+ - name: Build website
29
+ run: |
30
+ npm run build
31
32
- name: Deploy to GitHub Pages
33
uses: JamesIves/github-pages-deploy-action@v4
34
with:
docusaurus.config.js
@@ -40,7 +40,6 @@ const config = {
40
sidebarPath: './sidebars.js',
41
remarkPlugins: [remarkMath],
42
rehypePlugins: [rehypeKatex],
43
- routeBasePath: "/",
44
},
45
theme: {
46
customCss: './src/css/custom.scss',
0 commit comments