Files
gdit-front/.gitignore
JSC 8fe6ee937b feat: initialize frontend project with Vite, React, and TypeScript
- Added components.json for component configuration
- Created eslint.config.js for ESLint setup with TypeScript and React
- Added index.html as the main entry point
- Initialized package.json with dependencies and scripts for development
- Included Vite logo SVG in public directory
- Created basic App component in src/App.tsx
- Added React logo SVG in assets directory
- Implemented Button component with variants in src/components/ui/button.tsx
- Set up Tailwind CSS in src/index.css
- Created utility functions for class names in src/lib/utils.ts
- Configured main entry point in src/main.tsx
- Added TypeScript environment definitions in vite-env.d.ts
- Created tsconfig files for application and node configurations
- Configured Vite with React and Tailwind CSS in vite.config.ts
2025-07-10 20:53:12 +02:00

25 lines
253 B
Plaintext

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?