File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
RV_API_URL =
2
+ RV_WEBSITE_URL =
2
3
RV_DMCA_GUID =
3
4
RV_GOOGLE_TAG_MANAGER_ID =
Original file line number Diff line number Diff line change 42
42
- name : Build
43
43
env :
44
44
RV_API_URL : ${{ vars.RV_API_URL }}
45
+ RV_WEBSITE_URL : " https://revanced.app"
45
46
RV_GOOGLE_TAG_MANAGER_ID : ${{ vars.RV_GOOGLE_TAG_MANAGER_ID }}
46
47
RV_DMCA_GUID : ${{ vars.RV_DMCA_GUID }}
47
48
run : bun run build
Original file line number Diff line number Diff line change 2
2
import { onMount } from ' svelte' ;
3
3
4
4
import type { BackendAbout } from ' $types' ;
5
- import { RV_API_URL } from ' $env/static/public' ;
5
+ import { RV_API_URL , RV_WEBSITE_URL } from ' $env/static/public' ;
6
6
7
7
import Footer from ' $components/organisms/Footer.svelte' ;
8
8
import Embed from ' $components/molecules/Embed.svelte' ;
9
9
10
10
let about = $state <BackendAbout | null >(null );
11
- let websiteUrl = $state <string | undefined >(undefined );
11
+ let websiteUrl = $state <string | undefined >(RV_WEBSITE_URL );
12
12
let referrer = $state <string | null >(null );
13
13
14
14
async function fetchAbout() {
You can’t perform that action at this time.
0 commit comments