Using with Next.js 12
To use Outstatic with Next.js 12, using the /pages
directory, you will need to use Outstatic with a version lower than v1.0.
First install the Outstatic package and dependencies:
Then install some needed dependencies:
Once installed, you'll need to add two files to your /pages
folder:
/pages/outstatic/[[...ost]].tsx
And /pages/api/outstatic/[[...ost]].tsx
Start your dev server. Assuming you're on http://localhost:3000
you can access your dashboard at https://localhost:3000/outstatic
.
You should see this page:
Let's update your environment variables.
Now go back to your GitHub OAuth App settings page and update the following values:
-
Homepage URL:
http://localhost:3000/
. -
Authorization callback URL:
http://localhost:3000/api/outstatic/callback
Click on Update application.
Restart your service and go back to the /outstatic
page.
If everything is setup correctly, then you'll see a login page and will be able to access your Dashboard.
Congratulations! Your Outstatic installation is ready and you can now start creating content.
If you already have a Markdown Next.js blog and want to start editing your files with Outstatic, follow the steps here to move your content to the outstatic/content
folder.
We recommend you learn how Outstatic manages content and also how to fetch data from your front end.
Access the Outstatic dashboard from your live site
If you also want to access your Outstatic dashboard from your live site you'll need to create a second GitHub OAuth app as GitHub doesn't allow for multiple callback urls for a single OAuth app.
Just repeat the steps for creating a GitHub OAuth app, but this time, replacing http://localhost:3000/
on Homepage URL and Authorization callback URL with your actual website address.
Don't forget to add the following environment variables to your Vercel project:
To learn more about all the available environment variables, see the Environment Variables section of the docs.