diff --git a/buildpack-run.sh b/buildpack-run.sh new file mode 100644 index 000000000..2249a84b9 --- /dev/null +++ b/buildpack-run.sh @@ -0,0 +1,5 @@ +# Runs build script so heroku-buildpack-static +# has a freshly compiled static site to work with. +rm -r build +npm install +npm run build diff --git a/static.json b/static.json new file mode 100644 index 000000000..bbad4d9d6 --- /dev/null +++ b/static.json @@ -0,0 +1,3 @@ +{ + "root": "build/" +}