This repository contains the source code for my personal portfolio, which was written in the TypeScript language, using Preact in its TSX-supported form, importing styles created in SCSS. To achieve this, the Vite framework was implemented, which is responsible for transpiling the scripts, and NPM, whose function is to handle external dependencies.
To handle this project on a local machine, open a terminal in the source folder and install the necessary dependencies with the following commands:
cd source
npm install --package-lock=false
Still in the source folder, it is possible to serve the website on the local network with:
npm run serve
Or even build a distributable package for the docs folder with:
npm run build