mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-12 18:10:06 -04:00
Upgrade sveltekit
This commit is contained in:
parent
3214263336
commit
a332223828
54 changed files with 1295 additions and 584 deletions
10
src/app.html
10
src/app.html
|
@ -2,12 +2,12 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%svelte.assets%/favicon.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link rel="manifest" crossorigin="use-credentials" href="%svelte.assets%/manifest.json">
|
||||
%svelte.head%
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body>
|
||||
%svelte.body%
|
||||
<div style="display: contents">%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
|
@ -1,6 +1,6 @@
|
|||
<script>
|
||||
import '../app.css'
|
||||
import NavBar from '../components/NavBar.svelte'
|
||||
import '~/app.css'
|
||||
import NavBar from '~/components/NavBar.svelte'
|
||||
import Modal from 'svelte-simple-modal'
|
||||
|
||||
let scrollTop = 0
|
|
@ -9,10 +9,10 @@
|
|||
search,
|
||||
setSearchParam,
|
||||
setPageTitle
|
||||
} from '../store.js'
|
||||
} from '~/store.js'
|
||||
import { onMount, onDestroy } from 'svelte'
|
||||
import CountryItem from '../components/CountryItem.svelte'
|
||||
import SearchField from '../components/SearchField.svelte'
|
||||
import CountryItem from '~/components/CountryItem.svelte'
|
||||
import SearchField from '~/components/SearchField.svelte'
|
||||
import _ from 'lodash'
|
||||
|
||||
let _countries = []
|
Loading…
Add table
Add a link
Reference in a new issue