Такая файловая архитектура:
-src
--components
----button
------button.hbs|scss|ts
--pages
----index.hbs
Прописал поиск модулей в webpack:
{
test: /\.(hbs)$/,
use: [
{
loader: 'handlebars-loader',
options: {
precompileOptions: {
noEscape: true
},
partialDirs: [
path.join(__dirname, '../src/components')
]
}
}
]
}
partialDirs - Позволяет искать модули в нужных директориях, но что если в этих директориях есть под директории? Как сказать чтобы искал во всей вложенности?
А то сейчас вот так:
{{#>list-select/list-select}}
{{>select/select title="Adalya" price="1000р*" img="tobacco-1.png"}}
{{>select/select title="Serbetli" price="1000р*" img="tobacco-2.png"}}
{{>select/select title="Sebero" price="1000р*" img="tobacco-3.png"}}
{{>select/select title="Dayli Hookah" price="1000р*" img="tobacco-4.png"}}
{{>select/select title="Darkside" price="1000р*" img="tobacco-5.png"}}
{{/list-select/list-select}}
В итоге дублирую одно и тоже, как исправить?))