Mention the template loader in the plugin docs
This commit is contained in:
parent
e4f04f7bdf
commit
f87e4e3a7c
@ -254,6 +254,26 @@ For example, in your webpack config file, you could add the following to the
|
|||||||
|
|
||||||
.. code-block:: javascript
|
.. code-block:: javascript
|
||||||
|
|
||||||
|
module: {
|
||||||
|
{
|
||||||
|
test: /templates\/.*\.(html|svg)$/,
|
||||||
|
use: [{
|
||||||
|
loader: 'lodash-template-webpack-loader',
|
||||||
|
options: {
|
||||||
|
escape: /\{\{\{([\s\S]+?)\}\}\}/g,
|
||||||
|
evaluate: /\{\[([\s\S]+?)\]\}/g,
|
||||||
|
interpolate: /\{\{([\s\S]+?)\}\}/g,
|
||||||
|
// By default, template places the values from your data in the
|
||||||
|
// local scope via the with statement. However, you can specify
|
||||||
|
// a single variable name with the variable setting. This can
|
||||||
|
// significantly improve the speed at which a template is able
|
||||||
|
// to render.
|
||||||
|
variable: 'o',
|
||||||
|
prependFilenameComment: __dirname
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
extensions: ['.js'],
|
extensions: ['.js'],
|
||||||
modules: [
|
modules: [
|
||||||
@ -266,6 +286,14 @@ For example, in your webpack config file, you could add the following to the
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
You'll need to install ``lodash-template-webpack-loader``.
|
||||||
|
|
||||||
|
Currently Converse uses a fork of `lodash-template-webpack-loader <https://github.com/jcbrand/lodash-template-webpack-loader>`_.
|
||||||
|
|
||||||
|
To install it, you can add ``"lodash-template-webpack-loader": "jcbrand/lodash-template-webpack-loader"``
|
||||||
|
to your package.json's ``devDependencies``.
|
||||||
|
|
||||||
|
|
||||||
.. _`dependencies`:
|
.. _`dependencies`:
|
||||||
|
|
||||||
Plugin dependencies
|
Plugin dependencies
|
||||||
|
Loading…
Reference in New Issue
Block a user