forked from dillonkearns/elm-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetlify.toml
16 lines (14 loc) · 804 Bytes
/
netlify.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[build]
base = "examples/docs/"
functions = "functions/"
publish = "dist/"
command = "mkdir /opt/build/repo/examples/docs/bin && export PATH=\"/opt/build/repo/examples/docs/bin:$PATH\" && echo $PATH && curl https://static.lamdera.com/bin/lamdera-1.1.0-linux-x86_64 -o /opt/build/repo/examples/docs/bin/lamdera && chmod a+x /opt/build/repo/examples/docs/bin/lamdera && export ELM_HOME=\"$NETLIFY_BUILD_BASE/cache/elm\" && (cd ../../ && npm install --no-optional && npm run build:generator) && npm install && npx --no-install elm-tooling install && npx elm-pages build && (cd functions/process-url && npm i)"
[[redirects]]
from = "/screenshot/*"
to = "/.netlify/functions/screenshot"
status = 200
[dev]
command = "npm start"
targetPort = 1234
autoLaunch = true
framework = "#custom"