From 98e9616af870dc6f2c79725741091c85f166f065 Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Wed, 28 Sep 2022 23:04:34 +0200 Subject: [PATCH] fix(docs): Add a note that node 18 is not supported Node 18 is not supported because of dependency problems. It's already covered by the package.json but not by the docs. Signed-off-by: Tilman Vatteroth --- docs/content/setup/manual-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/setup/manual-setup.md b/docs/content/setup/manual-setup.md index 4b6c2596c..24acf3210 100644 --- a/docs/content/setup/manual-setup.md +++ b/docs/content/setup/manual-setup.md @@ -1,7 +1,7 @@ # Manual Installation !!! info "Requirements on your server" - - Node.js `>= 14.13.1` or `>= 16`. We recommend you run HedgeDoc with the latest release of Node 16. + - Node.js `>= 14.13.1` or any version of Node 16. Node 18 is NOT supported. We recommend to run HedgeDoc with the latest release of Node 16. - Database (PostgreSQL, MySQL, MariaDB, SQLite) The database must use charset `utf8`. This is typically the default in PostgreSQL and SQLite. In MySQL and MariaDB UTF-8 might need to be set with `alter database character set utf8 collate utf8_bin;`