2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00
Files
Jeff Sagal 3928b015a9 Separate documentation dependencies (#874)
* separate documentation dependencies

* bump deps

* update netlify config and package scripts

* bump netlify

* add cross-env

* fix publish path
2019-05-05 16:51:23 -07:00

26 lines
851 B
TOML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Settings in the [build] context are global and are applied to all contexts
# unless otherwise overridden by more specific contexts.
# @see https://www.netlify.com/docs/netlify-toml-reference/
[build]
base = "docs"
publish = "docs/.vuepress/dist"
command = "yarn build"
# Deploy Preview context
#
# All deploys resulting from a pull/merge request will
# inherit these settings.
[context.deploy-preview]
command = "yarn build:preview"
# Branch Deploy context: all deploys that are not from a pull/merge request or
# from the Production branch will inherit these settings.
[context.branch-deploy]
command = "yarn build:preview"
# Redirects and headers are GLOBAL for all builds they do not get scoped to
# contexts no matter where you define them in the file.
[[redirects]]
from = "/guide/templating.html"
to = "/guide/slots.html"