Created
January 4, 2018 17:21
-
-
Save philhawksworth/61715131c5d229c06f161e82e93db803 to your computer and use it in GitHub Desktop.
Example netlify configuration file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Our global, build settings | |
[build] | |
base = "site" # run the buold from this directory | |
publish = "public" # the output diretory to push to the CDN after the build | |
command = "gulp build" # the command to build our site | |
# Specific branch context: Deploys from this branch | |
# will take these settings and override their | |
# current ones. | |
[context."feature/branch"] | |
command = "gulp build:my-feature" # For this branch we'd prefer to build with this | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
typo "buold" -> "build"