File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,20 @@ jobs:
15
15
- name : Checkout
16
16
uses : actions/checkout@v3
17
17
18
- - name : Install and Build website
18
+ - name : Setup node
19
+ uses : actions/setup-node@v3
20
+ with :
21
+ node-version : 21
22
+ cache : npm
23
+
24
+ - name : Install dependencies
19
25
run : |
20
- npm ci
21
- npm run build
26
+ npm install
22
27
28
+ - name : Build website
29
+ run : |
30
+ npm run build
31
+
23
32
- name : Deploy to GitHub Pages
24
33
uses : JamesIves/github-pages-deploy-action@v4
25
34
with :
Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ const config = {
40
40
sidebarPath : './sidebars.js' ,
41
41
remarkPlugins : [ remarkMath ] ,
42
42
rehypePlugins : [ rehypeKatex ] ,
43
- routeBasePath : "/" ,
44
43
} ,
45
44
theme : {
46
45
customCss : './src/css/custom.scss' ,
You can’t perform that action at this time.
0 commit comments