Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 981 Bytes

File metadata and controls

39 lines (29 loc) · 981 Bytes
title description created_at og
Creating a Blog with QwikJS
This qwikjs blog contains steps to create a qwikjs blog
05/Feb/2024 02:40
title description
Create a Blog with QwikJS framework
true
image image:alt
A quill and ink bottle, as it's a web.log
  • Create a new QwikJS project, give any name like simple-blog & choose an empty project to begin with.
$ npm create qwik@latest
$ cd simple-blog
  • Utilizing MDX, create a dir mkdir src/routes/blogs/first-blog & add some blog content as Markdown to a file index.mdx at the path.. like
---
title: First Blog
---

This is the first blog.

* One
* Two
* Three
  • npm start & visit /blogs/blog-with-qwik/.

  • npm i --save gray-matter to be able to fetch Title from parsed MDX when making Bloglist

  • Add tailwind support npm run qwik add tailwind.