mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-13 11:14:37 -05:00
netlify config
This commit is contained in:
parent
a868ca431b
commit
9f9087ab49
1 changed files with 47 additions and 0 deletions
47
netlify.toml
Normal file
47
netlify.toml
Normal file
|
@ -0,0 +1,47 @@
|
|||
# Settings in the [build] context are global and are applied to
|
||||
# all contexts unless otherwise overridden by more specific contexts.
|
||||
[build]
|
||||
# Directory to change to before starting a build.
|
||||
# This is where we will look for package.json/.nvmrc/etc.
|
||||
# If not set, defaults to the root directory.
|
||||
base = "./"
|
||||
|
||||
# Directory that contains the deploy-ready HTML files and
|
||||
# assets generated by the build. This is relative to the base
|
||||
# directory if one has been set, or the root directory if
|
||||
# a base has not been set. This sample publishes the directory
|
||||
# located at the absolute path "root/project/build-output"
|
||||
|
||||
publish = "out/"
|
||||
|
||||
# Default build command.
|
||||
command = "echo 'default context'"
|
||||
|
||||
[[plugins]]
|
||||
# Installs the Lighthouse Build Plugin for all deploy contexts
|
||||
package = "@netlify/plugin-lighthouse"
|
||||
|
||||
# Production context: all deploys from the Production branch
|
||||
# set in your site’s Branches settings in the UI will inherit
|
||||
# these settings. You can define environment variables
|
||||
# here but we recommend using the Netlify UI for sensitive
|
||||
# values to keep them out of your source repository.
|
||||
[context.production]
|
||||
publish = "out/"
|
||||
|
||||
# Redirects and headers are GLOBAL for all builds – they do not
|
||||
# get scoped to contexts no matter where you define them in the file.
|
||||
# For context-specific rules, use _headers or _redirects files,
|
||||
# which are PER-DEPLOY.
|
||||
|
||||
[[redirects]]
|
||||
from = "/awesome-cloud-native"
|
||||
to = "/"
|
||||
status = 302
|
||||
force = true
|
||||
|
||||
[[redirects]]
|
||||
from = "/awesome-go-fork"
|
||||
to = "/"
|
||||
status = 302
|
||||
force = true
|
Loading…
Reference in a new issue