Shows how to get repo export and walk it in TypeScript walktherepo.wisp.place
at main 254 B view raw
1import { defineConfig } from 'vite'; 2import { svelte } from '@sveltejs/vite-plugin-svelte'; 3import tailwindcss from '@tailwindcss/vite' 4 5// https://vite.dev/config/ 6export default defineConfig({ 7 plugins: [ 8 svelte(), 9 tailwindcss(), 10 ], 11});