Skip to content

Commit

Permalink
chore: update .gitignore and fix formatting in vite.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
s-satyajit committed Jan 2, 2025
1 parent c307166 commit 500ebe6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,5 @@ dist-ssr
*.njsproj
*.sln
*.sw?

.vercel
12 changes: 6 additions & 6 deletions vite.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import path from "path"
import react from "@vitejs/plugin-react"
import { defineConfig } from "vite"
import { dotenv } from "dotenv"
import path from "path";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
import dotenv from "dotenv";

dotenv.config()
dotenv.config();

export default defineConfig({
plugins: [react()],
Expand All @@ -12,4 +12,4 @@ export default defineConfig({
"@": path.resolve(__dirname, "./src"),
},
},
})
});

0 comments on commit 500ebe6

Please sign in to comment.