https://github.com/airrnot1106/nuxt-template-v3
Nuxt3+ESLint+Prettier+TailwindCSS+daisyUI+Vitest+Storybook template repository
https://github.com/airrnot1106/nuxt-template-v3
nuxt3 storybook tailwindcss template-repository
Last synced: 4 months ago
JSON representation
Nuxt3+ESLint+Prettier+TailwindCSS+daisyUI+Vitest+Storybook template repository
- Host: GitHub
- URL: https://github.com/airrnot1106/nuxt-template-v3
- Owner: airRnot1106
- Created: 2023-01-14T08:43:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-14T08:58:15.000Z (over 2 years ago)
- Last Synced: 2024-04-14T20:04:55.963Z (over 1 year ago)
- Topics: nuxt3, storybook, tailwindcss, template-repository
- Language: JavaScript
- Homepage:
- Size: 269 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nuxt-template-v3
## Nuxt3+ESLint+Prettier+TailwindCSS+daisyUI+Vitest+Storybook template

## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install
```## Development Server
Start the development server on http://localhost:3000
```bash
yarn dev
```## Testing
Test files should be located under src/tests/ and should be named `\*.spec.ts`
Run the tests:
```bash
yarn test
```## Storybook
Story files should be located under src/components/ and should be named `\*.stories.ts`; They should be located with the `vue` file
Run the storybook server on http://localhost:6006
```bash
yarn storybook
```