We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are a few options you can set for Jade template compilation when in socket stream production mode to speed Jade up:
{compileDebug: false}
{self: true}
self
with
The text was updated successfully, but these errors were encountered:
Hi @plievone,
Thanks for the tips, did you apply these in a fork anywhere? If so, I'd be happy to get them included in this module.
Sorry, something went wrong.
paulbjensen
No branches or pull requests
There are a few options you can set for Jade template compilation when in socket stream production mode to speed Jade up:
{compileDebug: false}
-- this strips debug instrumentation (line numbers) from compiled templates.{self: true}
-- optionally, this moves the locals under aself
object, thus avoiding the slowwith
block in compiled templates.The text was updated successfully, but these errors were encountered: