your personal website on atproto - mirror blento.app
at button 15 lines 363 B view raw
1import tailwindcss from '@tailwindcss/vite'; 2import { sveltekit } from '@sveltejs/kit/vite'; 3import { defineConfig } from 'vite'; 4import { sveltekitOG } from '@ethercorps/sveltekit-og/plugin'; 5 6export default defineConfig({ 7 plugins: [sveltekit(), tailwindcss(), sveltekitOG()], 8 server: { 9 host: '127.0.0.1', 10 port: 5179 11 }, 12 build: { 13 sourcemap: true 14 } 15});