We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea6ac4e commit b63e4b6Copy full SHA for b63e4b6
deploy.sh
@@ -0,0 +1,17 @@
1
+#!/usr/bin/env sh
2
+
3
+# abort on errors
4
+set -e
5
6
+# build
7
+vuepress build docs
8
9
+# navigate into the build output directory
10
+cd docs/.vuepress/dist
11
12
+git init
13
+git add -A
14
+git commit -m 'deploy'
15
16
+git push -f git@github.com:vuejs/rollup-plugin-vue.git master:gh-pages
17
+cd -
docs/.vuepress/config.js
@@ -1,6 +1,7 @@
module.exports = {
title: 'Rollup Plugin Vue',
description: 'Bundle .vue files using Rollup',
+ base: '/rollup-plugin-vue/',
markdown: {
config(md) {
md.use(require('./markdown-it-code-frame'))
0 commit comments