Исправление ссылок навбара #11

Merged
rndtrash merged 4 commits from feature/9-blog-nav-links into master 2026-04-11 21:39:09 +03:00
2 changed files with 10 additions and 1 deletions
Showing only changes of commit 5472ca22fe - Show all commits

View file

@ -5,7 +5,7 @@
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",
"build": "vite build", "build": "vite build",
"postbuild": "npx svelte-sitemap --domain https://teasanctuary.ru", "postbuild": "npx svelte-sitemap",
"preview": "vite preview", "preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"

9
svelte-sitemap.config.ts Normal file
View file

@ -0,0 +1,9 @@
// svelte-sitemap.config.ts
import type { OptionsSvelteSitemap } from 'svelte-sitemap';
const config: OptionsSvelteSitemap = {
domain: 'https://teasanctuary.ru',
trailingSlashes: true,
};
export default config;