Files
George Cushen ef8ed449c7 feat(hugo): replace deprecated APIs for Hugo v0.156+ compatibility
Migrate site.Data → hugo.Data (42 occurrences), site.IsMultiLingual →
hugo.IsMultilingual, and site.AllPages → hugo.Sites nested range.
Simplify Netlify redirects template to use pre-processed aliases
instead of relLangURL per gohugoio/hugo#14408.
2026-03-27 03:25:42 +00:00
..
2026-01-02 21:06:55 +00:00

Hugo Plugin for Netlify

A build plugin to integrate your Hugo site seamlessly with Netlify.

The plugin automatically generates a _headers and _redirects file at the root of the public folder to configure HTTP headers and redirects on Netlify.

By default, the plugin will help secure your site with some common security headers. You can easily add or replace headers through the plugin config.

Install

  1. Edit config/_default/config.yaml to install the Netlify integration module:

    module:
      imports:
        - path: github.com/HugoBlox/kit/modules/integrations/netlify
    
  2. Tell Hugo to generate the Netlify headers and redirects files by adding them to Hugo's outputs config. For example,

    outputs:
      home: [..., headers, redirects]
    

Configure