mirror of
https://github.com/mikkelsvartveit/astro-personal-website.git
synced 2025-12-22 19:22:37 +00:00
21 lines
388 B
Markdown
21 lines
388 B
Markdown
# Astro personal website
|
|
|
|
My new personal website, powered by [Astro](https://astro.build) and [Tailwind CSS](https://tailwindcss.com).
|
|
|
|
### Running development server
|
|
|
|
```bash
|
|
npm install -g pnpm
|
|
pnpm install
|
|
pnpm dev
|
|
```
|
|
|
|
### Building for production
|
|
|
|
To create a production version of the app:
|
|
|
|
```bash
|
|
pnpm build
|
|
```
|
|
|
|
The production build can be previewed locally with `pnpm preview`.
|