Skip to content

lutomandl/resume-web

Repository files navigation

My resume website

This project is my resume website. It's a React app built with Vite.

You can visit live version of this website here.

website

Run the project

First of all install all dependencies:

npm i
# or
yarn

dev

Runs vite script, which runs the project locally, automatically reloading after every change.

npm run dev
# or
yarn dev

build

Builds the app for production to the build folder using vite build.

npm run build
# or
yarn build

preview

Runs local preview of the built app using vite preview,

npm run preview
# or
yarn preview