Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jojomatik/nuxt-3-base
A nuxt 3 project with vue3, vuetify, vue-i18n translation and composition API.
https://github.com/jojomatik/nuxt-3-base
composition-api i18n nuxt nuxt3 nuxtjs storybook vue vue-i18n vue3 vuejs vuetify vuetify3
Last synced: 3 days ago
JSON representation
A nuxt 3 project with vue3, vuetify, vue-i18n translation and composition API.
- Host: GitHub
- URL: https://github.com/jojomatik/nuxt-3-base
- Owner: jojomatik
- License: mit
- Created: 2022-02-21T21:38:26.000Z (over 2 years ago)
- Default Branch: beta
- Last Pushed: 2024-05-02T12:12:27.000Z (7 months ago)
- Last Synced: 2024-05-03T00:18:37.283Z (7 months ago)
- Topics: composition-api, i18n, nuxt, nuxt3, nuxtjs, storybook, vue, vue-i18n, vue3, vuejs, vuetify, vuetify3
- Language: TypeScript
- Homepage: https://nuxt.jojomatik.de/
- Size: 2.68 MB
- Stars: 22
- Watchers: 1
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Nuxt 3 Base
A base project for Nuxt 3 with additional features:
- linting with `eslint` and `prettier`
- example components in composition API syntax
- example setup for meta information
- internationalization with `@nuxtjs/i18n` and `vue-i18n`
- vuetify theming and components
- storybook setup with multiple modes for theming and i18nThis project uses [`@jojomatik/nuxt-bundle`](https://github.com/jojomatik/nuxt-bundle) to provide updates to basic configuration and tested dependency updates.
If you want to opt out of `@jojomatik/nuxt-bundle` you can merge it into your projects config (e.g. `package.json`, `nuxt.config.ts`) and configure it yourself.
## Setup
Make sure to install the dependencies
```bash
yarn install
```## Development
Start the development server on http://localhost:3000
```bash
yarn dev
```## Production
Build the application for production:
```bash
yarn build
```Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment).