From e1059dc72619ba32c9af6287edec158c5d6ad8fe Mon Sep 17 00:00:00 2001 From: aromeoes Date: Thu, 24 Oct 2024 12:10:47 -0300 Subject: [PATCH] Update static-site-generators.md --- docs/how-to/websites-on-ipfs/static-site-generators.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/how-to/websites-on-ipfs/static-site-generators.md b/docs/how-to/websites-on-ipfs/static-site-generators.md index a6633c9f9..21bd3cf53 100644 --- a/docs/how-to/websites-on-ipfs/static-site-generators.md +++ b/docs/how-to/websites-on-ipfs/static-site-generators.md @@ -97,3 +97,13 @@ Upload the `_site` folder to IPFS. While WordPress is not a static site generator, it is possible to turn it into a static website and migrate it over to a static-hosting service. [Take a look at this blog post from Fleek that walks you through the whole process](https://blog.fleek.co/posts/wordpress+fleek)! Keep in mind that you will lose the ability to manage your website's content through the WordPress _back-end_, and that this process requires that you install a plugin along-side your WordPress site. + +## Next.js + +Refer to Next.js's [output](https://nextjs.org/docs/app/api-reference/next-config-js/output) guide to install Ruby and Jekyll. + +Use the following commands to compile and then output your application into static html +```bash +npm run build +npm run output +```