https://github.com/oldpanda/my-vite-project
Starter project using Vite and DaisyUI
https://github.com/oldpanda/my-vite-project
daisyui typescript vite vue vue3
Last synced: about 1 month ago
JSON representation
Starter project using Vite and DaisyUI
- Host: GitHub
- URL: https://github.com/oldpanda/my-vite-project
- Owner: OldPanda
- Created: 2023-02-20T04:14:37.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-20T04:23:56.000Z (over 3 years ago)
- Last Synced: 2025-01-30T12:16:18.751Z (over 1 year ago)
- Topics: daisyui, typescript, vite, vue, vue3
- Language: Vue
- Homepage: https://old-panda.com/2023/02/12/how-to-quickly-setup-a-frontend-project-using-vite-and-daisyui/
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Vite + DaisyUI Starter Project
This is the starter project using Vite and DaisyUI for frontend learner. The construction steps can be found at [this post](https://old-panda.com/2023/02/12/how-to-quickly-setup-a-frontend-project-using-vite-and-daisyui/).
## Project Setup
```
pnpm install
```
## Compile and Hot-Reload for Development
```
pnpm run dev
```
## Type-Check, Compile and Minify for Production
```
pnpm run build
```
## Run Unit Tests with Vitest
```
pnpm run test:unit
```