#427 - Add hexo as SSG option

This commit is contained in:
Elio Struyf
2022-10-07 13:32:42 +02:00
parent 0ac4571859
commit 8a8db67e82
+12
View File
@@ -85,5 +85,17 @@ export const FrameworkDetectors = [{
commands: {
start: "npx @11ty/eleventy --serve"
}
},
{
framework: {
name: "hexo",
dist: "public",
build: "npx hexo-cli generate"
},
requiredFiles: ["_config.js"],
requiredDependencies: ["hexo"],
commands: {
start: "npx hexo-cli server"
}
}
];