This application is my web site. It has the purposes of study the technologies I like in front-end and to be a kind of notebook to general studies.
The design used is common in most of tools to build static sites, like Hugo, if you want to use it without programming to much.
Deployed at Netlify using GitHub integration.
Look at the nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoistStart the development server on http://localhost:3000
#yarn
yarn dev
#npm
npm run devBuild the application for production:
#yarn
yarn build
#npm
npm run buildBuild the static site:
#yarn
yarn generate
#npm
npm run generateLocally preview production build:
yarn preview
npm run previewCheckout the deployment documentation for more information.
This project is licensed under the MIT License - see the LICENSE file for details