Added package-lock to gitignore

This commit is contained in:
K
2025-02-26 19:43:02 +05:30
parent 785eb9e66a
commit bb15fe9b7a
2 changed files with 9 additions and 1 deletions
+8 -1
View File
@@ -4,6 +4,13 @@ import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss(),
plugins: [
react(),
tailwindcss(),
],
server: {
host: 'localhost',
port: 5173,
},
})