1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-11-17 08:30:51 -05:00
Files
hugo-extended/index.js

15 lines
454 B
JavaScript

import path from "path";
import { fileURLToPath } from "url";
// https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c#what-do-i-use-instead-of-__dirname-and-__filename
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const hugo = path.join(
__dirname,
"vendor",
process.platform === "win32" ? "hugo.exe" : "hugo",
);
// The only thing this module really exports is the absolute path to Hugo:
export default hugo;