nuxt.config.js에서 pug-loader에 options 전달
3299 단어 pugnuxt.jsvue-loader
하고 싶었던 일
유효했던 쓰기
{
build: {
extend (config) {
config.module.rules.forEach((rule)=> {
if(rule.loader === 'vue-loader') {
// vue-loaderのrule.options.templateから渡せる
rule.options.template.basedir= path.resolve('templates')
}
})
}
}
}
쓸모 없었던 쓰기
{
build: {
extend (config) {
// こう書いても動かない
config.module.rules.push({
test: /\.(pug)$/,
loader: 'pug-loader',
options: {
basedir: path.resolve('templates')
}
})
}
}
}
Reference
이 문제에 관하여(nuxt.config.js에서 pug-loader에 options 전달), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/notsunohito/items/574b53e679ec28acb315텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)