-1

grunt プラグインgrunt-nunjucks-2-htmlを介して grunt/node で Nunjucks を使用しています

私のルート パスは gruntfile がある場所なので、次のようになります。

./src
    index.html
    expo.html
    ./inc
        head.html
        header.html

私のグラントファイルの設定は次のようになります:

nunjucks: {
    render: {
        files: [
            {
                expand: true,
                cwd: 'src/',
                src: "*.html",
                dest: pathbuild,
                ext: ".html"
            }
        ]
    }
},

私のindex.htmlにはこれがあります:

{% include "inc/head.html" %}

試してみるとgrunt nunjucks、これが得られます

Warning: (unknown path) Error: template not found: inc/head.html
Use --force to continue.

パスを変更すれば解決できますが"src/inc/head/html"、これを指定する必要がある理由がわかりません。論理的ではないようです。

私がとても見逃していた私に何か教えてくれることはありますか?ありがとう。

4

1 に答える 1