Skip to content

Instantly share code, notes, and snippets.

@sheecegardezi
Created May 29, 2023 11:25
Show Gist options
  • Save sheecegardezi/c57145c4c19bcadf7edeed091d40d4e2 to your computer and use it in GitHub Desktop.
Save sheecegardezi/c57145c4c19bcadf7edeed091d40d4e2 to your computer and use it in GitHub Desktop.
Useful extentions for vscode
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
@sheecegardezi
Copy link
Author

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;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment