├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── mdsvex.config.cjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── src ├── app.html ├── components │ ├── Counter.svelte │ ├── Infobox.svelte │ └── Nav.svelte ├── globals.d.ts ├── pages │ ├── 001-what-is-sveltekit.svx │ ├── 002-getting-started.svx │ ├── 003-navigating-your-app.svx │ ├── 004-convenience-toolbox.svx │ ├── 005-assets-metadata-css.svx │ ├── 006-data-processing.svx │ ├── 007-setting-the-context.svx │ ├── 008-deploying-an-app.svx │ └── 999-everything.svx ├── routes │ ├── $error.svelte │ ├── $layout.svelte │ ├── 404.svelte │ ├── _global.css │ ├── index.svelte │ └── learn │ │ ├── $layout.svelte │ │ ├── [slug].svelte │ │ └── index.svelte ├── setup │ └── index.js └── types.d.ts ├── static ├── favicon.ico ├── fonts │ ├── overpass-v5-latin-300.woff │ ├── overpass-v5-latin-300.woff2 │ ├── overpass-v5-latin-300italic.woff │ ├── overpass-v5-latin-300italic.woff2 │ ├── overpass-v5-latin-600.woff │ ├── overpass-v5-latin-600.woff2 │ ├── overpass-v5-latin-700.woff │ ├── overpass-v5-latin-700.woff2 │ ├── overpass-v5-latin-800.woff │ └── overpass-v5-latin-800.woff2 ├── logo.png └── robots.txt ├── svelte.config.cjs ├── tailwind.config.cjs ├── tsconfig.json ├── vercel.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/README.md -------------------------------------------------------------------------------- /mdsvex.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/mdsvex.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/app.html -------------------------------------------------------------------------------- /src/components/Counter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/components/Counter.svelte -------------------------------------------------------------------------------- /src/components/Infobox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/components/Infobox.svelte -------------------------------------------------------------------------------- /src/components/Nav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/components/Nav.svelte -------------------------------------------------------------------------------- /src/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/globals.d.ts -------------------------------------------------------------------------------- /src/pages/001-what-is-sveltekit.svx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/pages/001-what-is-sveltekit.svx -------------------------------------------------------------------------------- /src/pages/002-getting-started.svx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/pages/002-getting-started.svx -------------------------------------------------------------------------------- /src/pages/003-navigating-your-app.svx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/pages/003-navigating-your-app.svx -------------------------------------------------------------------------------- /src/pages/004-convenience-toolbox.svx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/pages/004-convenience-toolbox.svx -------------------------------------------------------------------------------- /src/pages/005-assets-metadata-css.svx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/pages/005-assets-metadata-css.svx -------------------------------------------------------------------------------- /src/pages/006-data-processing.svx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/pages/006-data-processing.svx -------------------------------------------------------------------------------- /src/pages/007-setting-the-context.svx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/pages/007-setting-the-context.svx -------------------------------------------------------------------------------- /src/pages/008-deploying-an-app.svx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/pages/008-deploying-an-app.svx -------------------------------------------------------------------------------- /src/pages/999-everything.svx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/pages/999-everything.svx -------------------------------------------------------------------------------- /src/routes/$error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/routes/$error.svelte -------------------------------------------------------------------------------- /src/routes/$layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/routes/$layout.svelte -------------------------------------------------------------------------------- /src/routes/404.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/routes/404.svelte -------------------------------------------------------------------------------- /src/routes/_global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/routes/_global.css -------------------------------------------------------------------------------- /src/routes/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/routes/index.svelte -------------------------------------------------------------------------------- /src/routes/learn/$layout.svelte: -------------------------------------------------------------------------------- 1 | 2 | {''} 3 | -------------------------------------------------------------------------------- /src/routes/learn/[slug].svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/routes/learn/[slug].svelte -------------------------------------------------------------------------------- /src/routes/learn/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/routes/learn/index.svelte -------------------------------------------------------------------------------- /src/setup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/setup/index.js -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fonts/overpass-v5-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/fonts/overpass-v5-latin-300.woff -------------------------------------------------------------------------------- /static/fonts/overpass-v5-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/fonts/overpass-v5-latin-300.woff2 -------------------------------------------------------------------------------- /static/fonts/overpass-v5-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/fonts/overpass-v5-latin-300italic.woff -------------------------------------------------------------------------------- /static/fonts/overpass-v5-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/fonts/overpass-v5-latin-300italic.woff2 -------------------------------------------------------------------------------- /static/fonts/overpass-v5-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/fonts/overpass-v5-latin-600.woff -------------------------------------------------------------------------------- /static/fonts/overpass-v5-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/fonts/overpass-v5-latin-600.woff2 -------------------------------------------------------------------------------- /static/fonts/overpass-v5-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/fonts/overpass-v5-latin-700.woff -------------------------------------------------------------------------------- /static/fonts/overpass-v5-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/fonts/overpass-v5-latin-700.woff2 -------------------------------------------------------------------------------- /static/fonts/overpass-v5-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/fonts/overpass-v5-latin-800.woff -------------------------------------------------------------------------------- /static/fonts/overpass-v5-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/fonts/overpass-v5-latin-800.woff2 -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/static/robots.txt -------------------------------------------------------------------------------- /svelte.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/svelte.config.cjs -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrygrFlzr/kit-docs/HEAD/vite.config.js --------------------------------------------------------------------------------