Update settings

This commit is contained in:
hannah.dagemark 2025-04-24 15:11:47 +02:00
commit cdeaffe8a9
3 changed files with 5 additions and 0 deletions

1
.gitignore vendored
View file

@ -17,6 +17,7 @@ dist-ssr
!.vscode/extensions.json !.vscode/extensions.json
.idea .idea
.DS_Store .DS_Store
.env
*.suo *.suo
*.ntvs* *.ntvs*
*.njsproj *.njsproj

1
scripts/setup.sh Executable file
View file

@ -0,0 +1 @@
pnpm install

View file

@ -4,5 +4,8 @@ import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/ // https://vite.dev/config/
export default defineConfig({ export default defineConfig({
server: {
port: 5000,
},
plugins: [react(), tailwindcss()], plugins: [react(), tailwindcss()],
}) })