Initial commit

This commit is contained in:
Smile Rex
2025-07-20 22:49:55 +03:00
parent 9220daf8eb
commit f2ce41360b
6 changed files with 280 additions and 8 deletions

View File

@@ -3,5 +3,14 @@ import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [tailwindcss(), sveltekit()]
plugins: [tailwindcss(), sveltekit()],
server:{
port:5173,
strictPort:false,
},
preview:{
port:4000,
strictPort:false,
}
});