docbrown/netlify.toml
Andy Zhao 40f4997199 Update README/Docs (#670)
* Rename and add addl postgres setup

* Update ToC for docs/readme

* Add links + enrich license FAQ page (#671)

- Added brief "intro" section at the top
- Added back in links that were lost in copy/paste over

* Nick/task/update front end docs [skip ci]

* Clarify that each step is an or

* issue/pr templates

* Remove broken redirect from netlify

* Attempt to add redirects for Netlify

* Try to fix redirects for Netlify

* Added more redirects for netlify

* Fix redirects to use splat keyword

* Testing placeholder instead of splat

* add product roadmap

* Change doc contribution instructions

* Add notice at bottom
2018-08-08 12:40:20 -04:00

33 lines
983 B
TOML

# Global settings applied to the whole site.
#
# “publish” is the directory to publish (relative to root of your repo),
# “command” is your build command,
# “base” is directory to change to before starting build. if you set base:
# that is where we will look for package.json/.nvmrc/etc not repo root!
[build]
base = "docs/"
[[redirects]]
from = "http://docs.dev.to"
to = "https://docs.dev.to"
[[redirects]]
from = "http://docs.dev.to/*"
to = "https://docs.dev.to/:splat"
[[redirects]]
from = "docs.dev.to"
to = "https://docs.dev.to"
[[redirects]]
from = "docs.dev.to/*"
to = "https://docs.dev.to/:splat"
[[redirects]]
from = "http://devto.netlify.com"
to = "https://docs.dev.to"
[[redirects]]
from = "http://devto.netlify.com/:splat"
to = "https://docs.dev.to/:splat"
[[redirects]]
from = "https://devto.netlify.com"
to = "https://docs.dev.to"
[[redirects]]
from = "https://devto.netlify.com/*"
to = "https://docs.dev.to/:splat"