Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vaniyokk/vuepress-plugin-alias
Vuepress plugin that generates alias pages for proper redirect handling
https://github.com/vaniyokk/vuepress-plugin-alias
Last synced: 3 months ago
JSON representation
Vuepress plugin that generates alias pages for proper redirect handling
- Host: GitHub
- URL: https://github.com/vaniyokk/vuepress-plugin-alias
- Owner: vaniyokk
- Created: 2018-12-15T16:21:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-19T08:06:36.000Z (over 3 years ago)
- Last Synced: 2024-04-19T16:42:09.198Z (7 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vuepress-plugin-alias
Vuepress plugin that generates alias pages for proper redirect handling## Install
* Yarn
```sh
yarn add vuepress-plugin-alias
```
* NPM```sh
npm install vuepress-plugin-alias
```## Usage
### Vuepress v1.x
```js
// .vuepress/config.js
module.exports = {
plugins: [ 'alias' ]
}
```and in your front-matter add alias to redirect from
```md
---
alias: old-link.html
---
```
or a list of aliases
```md
---
aliases:
- old-link1.html
- old-link2.html
---
```