From 120b206783b93cc5d48a05e9162cf7ce36f17a50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Mon, 17 Jun 2024 01:28:03 +0200 Subject: [PATCH] ignore pages --- build.sh | 1 + graph-ui/.gitignore | 3 +++ 2 files changed, 4 insertions(+) diff --git a/build.sh b/build.sh index ad9527d..80c836f 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,7 @@ #!/bin/bash zola build +mkdir graph-ui/pages || true cp public/training/index.html graph-ui/pages/index.tsx cd graph-ui npm run build diff --git a/graph-ui/.gitignore b/graph-ui/.gitignore index 32f85db..fb58e72 100644 --- a/graph-ui/.gitignore +++ b/graph-ui/.gitignore @@ -35,3 +35,6 @@ yarn-error.log* # typescript *.tsbuildinfo next-env.d.ts + +# page are generated +pages/*.tsx