We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18c2bbb commit a4a88b1Copy full SHA for a4a88b1
.github/workflows/test_release.yaml
@@ -25,8 +25,11 @@ jobs:
25
node-version: 16
26
cache: 'yarn'
27
28
- - name: Build
29
- run: yarn && yarn add global rimraf && rimraf build && node scripts/setup_assets.js --check && yarn build:deps && vite build
+ - name: Install dependencies
+ run: yarn
30
+
31
+ - name: Build targets
32
+ run: NODE_OPTIONS=--max-old-space-size=32768 yarn build
33
34
- name: Setup Qemu
35
uses: docker/setup-qemu-action@v2
nginx-conf.d/revite-test.conf
@@ -4,7 +4,7 @@ server {
4
5
location / {
6
add_header Access-Control-Allow-Origin *;
7
- root /usr/share/nginx/html;
+ root /usr/share/nginx/html/revite;
8
}
9
10
0 commit comments