mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
3928b015a9
* separate documentation dependencies * bump deps * update netlify config and package scripts * bump netlify * add cross-env * fix publish path
26 lines
851 B
TOML
26 lines
851 B
TOML
# 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"
|