File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 6
6
import { RV_API_URL } from ' $env/static/public' ;
7
7
8
8
import Footer from ' $components/organisms/Footer.svelte' ;
9
+ import Embed from ' $components/molecules/Embed.svelte' ;
9
10
10
11
const { data : about } = useSWR <BackendAbout >(` ${RV_API_URL }/v4/about ` );
11
12
let referrer: string | null = $state (null );
19
20
<title >ReVanced - Counterfeit notice</title >
20
21
</svelte:head >
21
22
23
+ <Embed
24
+ title =" ReVanced - Counterfeit notice"
25
+ description =" You may be a victim of ReVanced counterfeit. Learn more about it here."
26
+ websiteUrl =" https://revanced.app"
27
+ image =" https://revanced.app/logo.png"
28
+ />
29
+
22
30
<main >
23
31
<div id =" content" >
24
32
<section class =" hero" >
Original file line number Diff line number Diff line change @@ -3,5 +3,6 @@ import { defineConfig } from 'vite';
3
3
import Icons from 'unplugin-icons/vite' ;
4
4
5
5
export default defineConfig ( {
6
- plugins : [ sveltekit ( ) , Icons ( { compiler : 'svelte' } ) ]
6
+ plugins : [ sveltekit ( ) , Icons ( { compiler : 'svelte' } ) ] ,
7
+ server : { allowedHosts : true }
7
8
} ) ;
You can’t perform that action at this time.
0 commit comments