mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-10 04:22:12 +00:00
This PR adds [VuePress](https://vuepress.vuejs.org/) and [VitePress](https://vitepress.vuejs.org/) the list of supported frameworks. - https://vuepress-starter-template.vercel.app - https://vitepress-starter-template.vercel.app #### Tests - [x] The code changed/added as part of this PR has been covered with tests - [x] All tests pass locally with `yarn test-unit`
42 lines
695 B
Markdown
42 lines
695 B
Markdown
# VuePress
|
|
|
|
This directory is a brief example of a [VuePress](https://vuepress.vuejs.org/) site that can be deployed to Vercel with zero-configuration.
|
|
|
|
## Deploy Your Own
|
|
|
|
[](https://vercel.com/new/clone?repository-url=https://github.com/vercel/vercel/tree/main/examples/vuepress&template=vuepress)
|
|
|
|
_Live Example: https://vuepress-starter-template.vercel.app_
|
|
|
|
## Setup
|
|
|
|
Install the dependencies:
|
|
|
|
```bash
|
|
$ yarn install
|
|
```
|
|
|
|
### Development
|
|
|
|
Start the development server
|
|
|
|
```bash
|
|
$ yarn dev
|
|
```
|
|
|
|
### Build the project
|
|
|
|
Build for production
|
|
|
|
```bash
|
|
$ yarn build
|
|
```
|
|
|
|
### Deploy
|
|
|
|
Deploy your VuePress application to Vercel
|
|
|
|
```bash
|
|
$ vercel
|
|
```
|