File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
name : deploy
2
2
on : workflow_dispatch
3
3
env :
4
- VERCEL_ORG_ID : ${{ secrets.VERCEL_ORG_ID }}
5
- VERCEL_PROJECT_ID : ${{ secrets.VERCEL_PROJECT_ID }}
4
+ NODE_OPTIONS : --max-old-space-size=4096
6
5
NUXT_PUBLIC_CDN_URL : ${{ secrets.VITE_APP_CDN_URL }}
7
6
NUXT_PUBLIC_DISCORD_INVITE_LINK : ${{ secrets.VITE_DISCORD_INVITE_LINK }}
8
7
NUXT_PUBLIC_FATHOM_EVENT_ACCOUNT_REGISTRATION : ${{ secrets.VUE_APP_FATHOM_GOAL_ACCOUNT_REGISTRATION }}
25
24
NUXT_PUBLIC_FIREBASE_PROJECT_ID : ${{ secrets.VUE_APP_FIREBASE_PROJECT_ID }}
26
25
NUXT_PUBLIC_FIREBASE_STORAGE_BUCKET : ${{ secrets.VUE_APP_FIREBASE_STORAGE_BUCKET }}
27
26
NUXT_PUBLIC_STRIPE_MONTHLY_PRICE : ${{ secrets.VUE_APP_STRIPE_MONTHLY_PRICE }}
27
+ VERCEL_ORG_ID : ${{ secrets.VERCEL_ORG_ID }}
28
+ VERCEL_PROJECT_ID : ${{ secrets.VERCEL_PROJECT_ID }}
28
29
jobs :
29
30
deploy_vercel :
30
31
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 5
5
"private" : true ,
6
6
"type" : " module" ,
7
7
"scripts" : {
8
- "build" : " nuxt prepare && vue-tsc --noEmit && yarn build:unsafe" ,
9
- "build:unsafe" : " vite -c vite.base-config.ts build" ,
10
- "dev" : " vite -c vite.base-config.ts --port 8888" ,
11
- "nuxt:build" : " nuxt generate" ,
12
- "nuxt:dev" : " nuxt dev" ,
13
- "nuxt:preview" : " nuxt preview" ,
14
- "preview" : " yarn build && yarn preview:latest" ,
15
- "preview:latest" : " vite -c vite.base-config.ts preview --port 8889"
8
+ "build" : " nuxt prepare && nuxt typecheck && nuxt generate" ,
9
+ "dev" : " nuxt dev --port 8888" ,
10
+ "legacy:build" : " nuxt prepare && vue-tsc --noEmit && vite -c vite.base-config.ts build" ,
11
+ "legacy:dev" : " vite -c vite.base-config.ts --port 8888" ,
12
+ "legacy:preview" : " yarn build && vite -c vite.base-config.ts preview --port 8889" ,
13
+ "preview" : " nuxt preview"
16
14
},
17
15
"dependencies" : {
18
16
"@mermaid-js/mermaid-mindmap" : " ^9.2.2" ,
You can’t perform that action at this time.
0 commit comments