Translations:Hugo/13/en: Difference between revisions
Appearance
Importing a new version from external source Tags: Mobile edit Mobile web edit |
(No difference)
|
Latest revision as of 06:59, 19 May 2025
You may want to limit Hugo installation to your project only. This allows contributors to use the exact dependencies specified for the project:
❄︎ shell.nix
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
packages = [
pkgs.hugo
# Other dependencies for your project.
];
}