A demo music artist portfolio website.
This project is for demonstration purposes only and does not represent a real person. Any resemblance to actual individuals is purely coincidental.
- Clone this repository
git clone https://github.com/khianvictorycalderon/John-Doe.git
- Run
npm install
- Run
npm run dev
The following is a list of installed dependencies and configuration settings used in this project.
You don’t need to install anything manually, as all dependencies are already managed through package.json
.
This section is provided for reference only, to give you insight into how the project was set up.
npm install tailwindcss @tailwindcss/vite
npm install -D @types/node
npm i ogl
npm i gh-pages -D
- Update
src/index.css
:@import "tailwindcss";
- Update
tsconfig.json
:"compilerOptions": { "baseUrl": ".", "paths": { "@/*": ["./src/*"] } }
- Update
tsconfig.app.json
:"compilerOptions": { // ... "baseUrl": ".", "paths": { "@/*": [ "./src/*" ] } // ... }
- Update
vite.config.ts
:export default defineConfig({ plugins: [react(), tailwindcss()], resolve: { alias: { "@": path.resolve(__dirname, "./src"), }, }, })