This is the source code for www.marcal.dev, my personal blog. It's a static site built with Nuxt Content, Vue.js, and Markdown. The site is pre-generated for optimal performance and simplicity.
- Nuxt Content: Enables effortless content creation and management using Markdown.
- Vue.js: A powerful JavaScript framework for building the site's dynamic components.
- Static Generation: The blog is pre-built as a static site for fast loading speeds and efficient delivery.
- Markdown Support: Write posts in Markdown for a clean and simple workflow.
- Node.js (v16 or later)
- Yarn or npm
- Clone the repository:
git clone https://github.com/vitormarcal/marcal-blog.git cd marcal-blog
- Install dependencies:
or
yarn install
npm install
- Run the development server:
or
yarn dev
npm run dev
- Build for production:
or
yarn generate
npm run generate
- Serve the generated site from the
/dist
folder.