Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 20 days 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-14T08:58:15.000Z (about 2 years ago)
- Last Synced: 2024-04-14T20:04:55.963Z (10 months 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
![](https://img.shields.io/badge/-Nuxt3-00C58E.svg?logo=nuxt.js&style=popout)
![](https://img.shields.io/badge/-Typescript-007ACC.svg?logo=typescript&style=popout)## 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
```