Created
May 29, 2023 11:25
-
-
Save sheecegardezi/c57145c4c19bcadf7edeed091d40d4e2 to your computer and use it in GitHub Desktop.
Useful extentions for vscode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
code analysis | |
ext install SonarSource.sonarlint-vscode | |
sevlte | |
ext install svelte.svelte-vscode | |
ext install ardenivanov.svelte-intellisense | |
ext install fivethree.vscode-svelte-snippets | |
tailwind | |
ext install bradlc.vscode-tailwindcss | |
Git | |
ext install donjayamanne.githistory | |
ext install waderyan.gitblame | |
ext install mhutchie.git-graph | |
api | |
ext install rangav.vscode-thunder-client (https://www.thunderclient.com/) | |
productivity | |
ext install Blade.timetracker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
import adapter from "@sveltejs/adapter-vercel";
import { vitePreprocess } from "@sveltejs/kit/vite";
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter(),
},
preprocess: vitePreprocess(),
vitePlugin: {
experimental: {
inspector: {
toggleKeyCombo: 'shift',
holdMode: true,
showToggleButton: 'always',
toggleButtonPos: 'bottom-right',
},
},
},
};
export default config;