1
0

Инициализация

This commit is contained in:
2025-09-11 14:33:53 +04:00
commit 3e143b36ee
12 changed files with 1233 additions and 0 deletions

12
src/app.html Normal file
View File

@@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div>%sveltekit.body%</div>
</body>
</html>

1
src/lib/index.js Normal file
View File

@@ -0,0 +1 @@
// Reexport your entry components here

3
src/routes/+page.svelte Normal file
View File

@@ -0,0 +1,3 @@
<h1>Welcome to your library project</h1>
<p>Create your package using @sveltejs/package and preview/showcase your work with SvelteKit</p>
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>