Skip to content

Instantly share code, notes, and snippets.

View reedwane's full-sized avatar

Ridwan Gboyega Abdulkareem reedwane

View GitHub Profile
@reedwane
reedwane / gist:9ca1ec1cf52110491c959b7ea4890044
Created August 25, 2023 19:13
Nextjs deployment with github workflow to netlify using netlify cli and the nextjs runtime of netlify
## create a `netlify.toml` file in the root of your project directory with this config:
[[plugins]]
package = "@netlify/plugin-nextjs"
[build]
command = "npm run build"
publish = ".next"
## A sample workflow that works: