diff --git a/README.md b/README.md index 700a2fe2..0edc4fbc 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ also returned. The following frameworks are detected: - Static site generators: Gatsby, Hugo, Jekyll, Next.js, Nuxt, Hexo, Gridsome, Docusaurus, Eleventy, Middleman, - Phenomic, React-static, Stencil, Vuepress, Assemble, DocPad, Harp, Metalsmith, Roots, Wintersmith + Phenomic, React-static, Stencil, SvelteKit, Vuepress, Assemble, DocPad, Harp, Metalsmith, Roots, Wintersmith - Front-end frameworks: create-react-app, Vue, Sapper, Angular, Ember, Svelte, Expo, Quasar - Build tools: Parcel, Brunch, Grunt, Gulp diff --git a/src/frameworks/svelte-kit.json b/src/frameworks/svelte-kit.json index 64ffd916..74d3e9ed 100644 --- a/src/frameworks/svelte-kit.json +++ b/src/frameworks/svelte-kit.json @@ -14,7 +14,7 @@ }, "build": { "command": "vite build", - "directory": ".svelte-kit" + "directory": "build" }, "logo": { "default": "/logos/svelte-kit/default.svg", diff --git a/src/frameworks/svelte.json b/src/frameworks/svelte.json index 4c802718..9e9cde96 100644 --- a/src/frameworks/svelte.json +++ b/src/frameworks/svelte.json @@ -8,13 +8,13 @@ "configFiles": [] }, "dev": { - "command": "npm run dev", - "port": 5000, + "command": "vite dev", + "port": 5173, "pollingStrategies": [{ "name": "TCP" }, { "name": "HTTP" }] }, "build": { - "command": "npm run build", - "directory": "public" + "command": "vite build", + "directory": "dist" }, "logo": { "default": "/logos/svelte-kit/default.svg",