5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Webpack: jade-loaderでJadeファイル内でincludeする。

Last updated at Posted at 2015-07-27

app <- template <- particalという感じでapp.jsないでjadeでテンプレートを展開したい。

app.js

読み込み先

var template = require('jade?includeInline=false!./template.jade')();
console.log(template);

partical.jade

別のJade内でincludeされるJade

div
 p Partical

template.jade(誤)

jade-loadeを使ってapp.jsへrequireされるJade

これを普通に

div
  include partcial

とするとpartical.jadeの中身がnodejsとして解釈されてしまう。そのため下記の様にincludeの代わりにrequireしてあげる。

template.jade(正)

div
  != require('jade!./partcial.jade')
5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?