html
Eleventy は、ネストされた index.md ファイルから生成されたインデックス ファイルに接尾辞を追加していません。
たとえば、これは私のソース コンテンツを含むサンプル ディレクトリ構造です ...
|
+- /src (input dir)
|
+- post
| |
| +- my-cool-post
| |
| +- /images
| |
| +- index.md
|
+- index.md
|
+- about.md
次にコマンドnpx eleventy
を実行すると、次の出力が得られます...
|
+- /public (output dir)
|
+- post
| |
| +- my-cool-post
| |
| +- /images
| |
| +- index <---- NOTE there is no ".html" suffix on this file
|
+- index.html <----- this file is ok however
|
+- about.html <----- and so is this file
これが私の.eleventy.js
構成ファイルのセットアップ方法です..
// Data Extensions
const yaml = require("js-yaml");
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("_assets");
eleventyConfig.addWatchTarget("./src/_sass/");
eleventyConfig.addDataExtension("yaml", contents => yaml.safeLoad(contents));
eleventyConfig.setTemplateFormats([
"md",
"css",
"jpg",
"png",
"webp",
"svg",
"html"
]);
return {
jsDataFileSuffix: ".11ty",
dataTemplateEngine: "njk",
htmlTemplateEngine: "njk",
markdownTemplateEngine: "njk",
passthroughFileCopy: true,
dir: {
input: "src",
data: "_data",
includes: "_includes",
layouts: "_layouts",
output: "public"
}
}
}
*.html
サフィックスがない場合、URLhttp://../post/my-cool-post
は 404 エラーを返します。接尾辞を手動で追加すると、*.html
機能します。
私のセットアップの何が問題なのですか?