https://github.com/bunnyshell/template-vue-tailwind
Bunnyshell templates for a Vue + Tailwind static site
https://github.com/bunnyshell/template-vue-tailwind
Last synced: 5 months ago
JSON representation
Bunnyshell templates for a Vue + Tailwind static site
- Host: GitHub
- URL: https://github.com/bunnyshell/template-vue-tailwind
- Owner: bunnyshell
- License: gpl-3.0
- Created: 2024-07-29T16:14:28.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-19T18:01:32.000Z (over 1 year ago)
- Last Synced: 2024-11-19T18:44:07.209Z (over 1 year ago)
- Language: CSS
- Size: 88.9 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bunnyshell HelloWorld-Vue
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
## Customize configuration
See [Vite Configuration Reference](https://vitejs.dev/config/).
## Project Setup
```sh
npm install
```
### Compile and Hot-Reload for Development
```sh
npm run dev
```
### Compile and Minify for Production
```sh
npm run build
```
### Run End-to-End Tests with [Playwright](https://playwright.dev)
```sh
# Install browsers for the first run
npx playwright install
# When testing on CI, must build the project first
npm run build
# Runs the end-to-end tests
npm run test:e2e
# Runs the tests only on Chromium
npm run test:e2e -- --project=chromium
# Runs the tests of a specific file
npm run test:e2e -- tests/example.spec.ts
# Runs the tests in debug mode
npm run test:e2e -- --debug
```