feat: initialize frontend with React and Vite setup
- Add main application structure with App component - Implement state management for counter functionality - Create CSS styles for application layout and components - Include assets for logos and hero image - Set up Vite configuration for development environment - Establish global CSS variables for theming
This commit is contained in:
+2
-2
@@ -1,4 +1,4 @@
|
||||
FROM node:20
|
||||
FROM node:20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
@@ -7,4 +7,4 @@ RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD ["npm", "start"]
|
||||
CMD ["npm", "run", "dev", "--", "--host"]
|
||||
|
||||
Reference in New Issue
Block a user