Added package-lock to gitignore and added server in vite.config.js

This commit is contained in:
K
2025-02-26 19:43:02 +05:30
parent 785eb9e66a
commit a3ab6731c6
2 changed files with 9 additions and 1 deletions
+1
View File
@@ -11,6 +11,7 @@ node_modules
dist
dist-ssr
*.local
package-lock.json
# Editor directories and files
.vscode/*
+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,
},
})