|
| 1 | +# @vuesion/nuxt-vanilla-extract |
| 2 | + |
| 3 | +[![npm version][npm-version-src]][npm-version-href] |
| 4 | +[![npm downloads][npm-downloads-src]][npm-downloads-href] |
| 5 | +[![Github Actions CI][github-actions-ci-src]][github-actions-ci-href] |
| 6 | +[![Codecov][codecov-src]][codecov-href] |
| 7 | +[![License][license-src]][license-href] |
| 8 | + |
| 9 | +> Adds seek-oss/vanilla-extract to your nuxt application |
| 10 | +
|
| 11 | +[📖 **Release Notes**](./CHANGELOG.md) |
| 12 | + |
| 13 | +## Setup |
| 14 | + |
| 15 | +1. Add `@vuesion/nuxt-vanilla-extract` dependency to your project |
| 16 | + |
| 17 | +```bash |
| 18 | +yarn add @vuesion/nuxt-vanilla-extract # or npm install @vuesion/nuxt-vanilla-extract |
| 19 | +``` |
| 20 | + |
| 21 | +2. Add `@vuesion/nuxt-vanilla-extract` to the `modules` section of `nuxt.config.js` |
| 22 | + |
| 23 | +```js |
| 24 | +{ |
| 25 | + modules: [ |
| 26 | + // Simple usage |
| 27 | + '@vuesion/nuxt-vanilla-extract', |
| 28 | + |
| 29 | + // With options |
| 30 | + ['@vuesion/nuxt-vanilla-extract', { /* module options */ }] |
| 31 | + ] |
| 32 | +} |
| 33 | +``` |
| 34 | + |
| 35 | +## Development |
| 36 | + |
| 37 | +1. Clone this repository |
| 38 | +2. Install dependencies using `yarn install` or `npm install` |
| 39 | +3. Start development server using `npm run dev` |
| 40 | + |
| 41 | +## License |
| 42 | + |
| 43 | +[MIT License](./LICENSE) |
| 44 | + |
| 45 | +Copyright (c) Johannes Werner < [email protected]> |
| 46 | + |
| 47 | +<!-- Badges --> |
| 48 | +[npm-version-src]: https://img.shields.io/npm/v/nuxt-vanilla-extract/latest.svg |
| 49 | +[npm-version-href]: https://npmjs.com/package/nuxt-vanilla-extract |
| 50 | + |
| 51 | +[npm-downloads-src]: https://img.shields.io/npm/dt/nuxt-vanilla-extract.svg |
| 52 | +[npm-downloads-href]: https://npmjs.com/package/nuxt-vanilla-extract |
| 53 | + |
| 54 | +[github-actions-ci-src]: https://github.com/vuesion/nuxt-vanilla-extract/workflows/ci/badge.svg |
| 55 | +[github-actions-ci-href]: https://github.com/vuesion/nuxt-vanilla-extract/actions?query=workflow%3Aci |
| 56 | + |
| 57 | +[codecov-src]: https://img.shields.io/codecov/c/github/vuesion/nuxt-vanilla-extract.svg |
| 58 | +[codecov-href]: https://codecov.io/gh/vuesion/nuxt-vanilla-extract |
| 59 | + |
| 60 | +[license-src]: https://img.shields.io/npm/l/nuxt-vanilla-extract.svg |
| 61 | +[license-href]: https://npmjs.com/package/nuxt-vanilla-extract |
0 commit comments