diff --git a/examples/pokedex/netlify.toml b/examples/pokedex/netlify.toml index 7d21a5aa..186aa436 100644 --- a/examples/pokedex/netlify.toml +++ b/examples/pokedex/netlify.toml @@ -1,7 +1,7 @@ [build] functions = "functions/" publish = "dist/" - command = "pwd && which curl && echo $PATH && curl https://static.lamdera.com/bin/linux/lamdera -o $NETLIFY_BUILD_BASE && chmod a+x $NETLIFY_BUILD_BASE/lamdera && export ELM_HOME=\"$NETLIFY_BUILD_BASE/cache/elm\" && (cd ../../ && npm install --no-optional && npx --no-install elm-tooling install) && npm install && npm run generate:tailwind && npm run generate:graphql && npm run build && node adapter.js && cp secret-note.txt functions/server-render/" + command = "pwd && which curl && echo $PATH && curl https://static.lamdera.com/bin/linux/lamdera -o /usr/bin/lamdera && chmod a+x /usr/bin/lamdera && export ELM_HOME=\"$NETLIFY_BUILD_BASE/cache/elm\" && (cd ../../ && npm install --no-optional && npx --no-install elm-tooling install) && npm install && npm run generate:tailwind && npm run generate:graphql && npm run build && node adapter.js && cp secret-note.txt functions/server-render/" [dev] command = "npm start"