update gitignore
This commit is contained in:
parent
2404b8760c
commit
94ad3ccb0e
|
|
@ -21,3 +21,5 @@ pnpm-debug.log*
|
||||||
.idea/
|
.idea/
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.vercel
|
.vercel
|
||||||
|
.env.example
|
||||||
|
deploy.js
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,9 @@
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build": "tsc -b && vite build",
|
"build": "tsc -b && vite build",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
"preview": "vite preview"
|
"preview": "vite preview",
|
||||||
|
"deploy": "npm run build && node deploy.js",
|
||||||
|
"deploy:prod": "npm run build && node deploy.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/react-router-dom": "^5.3.3",
|
"@types/react-router-dom": "^5.3.3",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue