Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nuxt/vite
โก Vite Experience with Nuxt 2
https://github.com/nuxt/vite
Last synced: 4 months ago
JSON representation
โก Vite Experience with Nuxt 2
- Host: GitHub
- URL: https://github.com/nuxt/vite
- Owner: nuxt
- Archived: true
- Created: 2021-02-25T20:36:29.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-04T14:12:59.000Z (about 2 years ago)
- Last Synced: 2024-09-18T17:15:08.137Z (4 months ago)
- Language: TypeScript
- Homepage: https://vite.nuxtjs.org
- Size: 1.4 MB
- Stars: 1,383
- Watchers: 52
- Forks: 46
- Open Issues: 74
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-fe-resources - nuxt/vite
README
# DEPRECATED
This module is now part of the [Nuxt Bridge](https://nuxt.com/docs/bridge/overview). Please report issues to the [nuxt/framework](https://github.com/nuxt/framework) repo instead.
---
[![](https://img.shields.io/npm/dm/nuxt-vite.svg?style=flat-square)](https://npmjs.com/package/nuxt-vite)
[![](https://img.shields.io/npm/v/nuxt-vite/latest.svg?style=flat-square)](https://npmjs.com/package/nuxt-vite)
[![](https://img.shields.io/github/workflow/status/nuxt/vite/ci/main?style=flat-square)](https://github.com/nuxt/vite/actions)
[![](https://img.shields.io/codecov/c/gh/nuxt/vite/main?style=flat-square)](https://codecov.io/gh/nuxt/vite)**๐งช Vite mode is experimental and many Nuxt modules are still incompatible. If you find a bug, please report via [issues](https://github.com/nuxt/vite/issues) with a minimal reproduction.**
๐ก We are trying to make most modules and options work out-of-the-box. If you are a module maintainer,
please see [this section](https://vite.nuxtjs.org/advanced/modules) for supporting Vite. If a module or feature is missing, feel free to open an issue.## โก Quick Start
Install `nuxt-vite`: (nuxt >= 2.15.0 is required)
```sh
yarn add --dev nuxt-vite
# OR
npm i -D nuxt-vite
```Add to `buildModules`:
```js
// nuxt.config
export default {
buildModules: [
'nuxt-vite'
]
}
```That's it! Now you can enjoy a super fast `nuxt dev` experience with Vite!
**[๐ Read documentation for more](https://vite.nuxtjs.org)**
## โค๏ธ Credits
This module could not be possible without [vite-plugin-vue2](https://github.com/underfin/vite-plugin-vue2) by [@underfin](https://github.com/underfin)
Published under MIT License