No description
Find a file
baalajimaestro 8c252c775e
Add wrangler.toml
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
2024-07-14 20:04:26 +05:30
.vscode feat: init repo 2024-03-13 15:17:11 +08:00
src Redirect automatically if the site isnt running on the correct url 2024-07-14 19:58:09 +05:30
.gitignore feat: init repo 2024-03-13 15:17:11 +08:00
astro.config.ts Fix rss 2024-07-14 10:46:33 +05:30
eslint.config.js feat: init repo 2024-03-13 15:17:11 +08:00
LICENSE chore: update author info 2024-06-06 15:25:14 +08:00
package.json Fix rss 2024-07-14 10:46:33 +05:30
pnpm-lock.yaml Integrate ghost cms 2024-07-13 00:36:15 +05:30
README.md chore: update author info 2024-06-06 15:25:14 +08:00
tsconfig.json feat!: update src dir 2024-05-11 17:19:40 +08:00
uno.config.ts feat!: update src dir 2024-05-11 17:19:40 +08:00
wrangler.toml Add wrangler.toml 2024-07-14 20:04:26 +05:30

Vitesse theme for Astro

A minimal, SEO-friendly portfolio and blog theme for Astro, supports Vue and UnoCSS.

Netlify Status

Preview

Preview Image

Features

  • 100 / 100 Lighthouse performance.
  • Responsive.
  • SEO-friendly.
  • Light / Dark Theme.
  • Markdown support.
  • MDX (components in your markdown) support.
  • Vue SFC component support.
  • Auto generated sitemap and RSS Feed VueUse & Lodash support.
  • Use the UnoCSS for style, it's fast.

Lighthouse Performance

Lighthouse Performance Image

Quick Start

Deploy to Netlify Button

Click this button, it will create a new repo for you that looks exactly like this one, and sets that repo up immediately for deployment on Netlify.

If you just want to develop locally, you can create a repo from this template on GitHub.

Usage

Just run and visit http://localhost:1977.

npn run dev

Node.js version 18 or higher is required for this project.

To build the App, you can run:

npm run build

You will then see the dist folder generated for publishing, which you can preview locally with the following command.

npm run preview

Use pnpm / yarn

If you want to use pnpm or yarn as a package management tool, please refer to the following steps.

If preinstall exists in scripts, remove it first.

pnpm

Replace "pre-commit": "npx lint-staged" in package.json with "pre-commit": "pnpm lint-staged".

And replace "*": "npm run lint:fix" with "*": "pnpm lint:fix".

Like this:

{
  // ...
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged"
  },
  "lint-staged": {
    "*": "pnpm lint:fix"
  }
}

yarn

Replace "pre-commit": "npx lint-staged" in package.json with "pre-commit": "yarn lint-staged".

And replace "*": "npm run lint:fix" with "*": "yarn lint:fix".

Like this:

{
  // ...
  "simple-git-hooks": {
    "pre-commit": "yarn lint-staged"
  },
  "lint-staged": {
    "*": "yarn lint:fix"
  }
}

License

MIT License © 2024-PRESENT Kevin Wong