From fde7a613f8dcfcb2d43c25194159ee136328a640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Bl=C3=A4ttermann?= Date: Wed, 23 Nov 2022 01:12:51 +0100 Subject: [PATCH] Update project structure in `README.md` --- website/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/website/README.md b/website/README.md index d0f8c75ac..e9d7aec26 100644 --- a/website/README.md +++ b/website/README.md @@ -80,7 +80,8 @@ bit of time. | ├── site.json # general site metadata | ├── type-annotations.json # Type annotations | └── universe.json # data for the spaCy universe section -├── public # compiled site +├── pages # Next router pages +├── public # static images and other assets ├── setup # Jinja setup ├── src # source | ├── components # React components @@ -99,8 +100,7 @@ bit of time. | # (to support "nvm use" to switch to correct Node version) | ├── .prettierrc # Prettier config file -├── gatsby-browser.js # browser-specific hooks for Gatsby -├── gatsby-config.js # Gatsby configuration -├── gatsby-node.js # Node-specific hooks for Gatsby -└── package.json # package settings and dependencies +├── next.config.mjs # Next config file +├── package.json # package settings and dependencies +└── tsconfig.json # TypeScript config file ```