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
"compileDebug" is default on (if you are not minifying).
This is causing some code to get injected which appears to be relying on the EJS runtime.
The offending code is part of a "rethrow" function which throws an exception on:
var filename = utils.escapeXML(flnm);
Unsure what the fix is here. Perhaps the "ejs" library should be including the utils module when "client" is true.
It might be more appropriate to make "compileDebug" default false, or at least document any side-effects. This took me by surprise.
The text was updated successfully, but these errors were encountered:
same problem,if you not set compileDebug: false explicit,ejs default on options.compileDebug = opts.compileDebug !== false;
options.compileDebug = opts.compileDebug !== false;
Sorry, something went wrong.
No branches or pull requests
"compileDebug" is default on (if you are not minifying).
This is causing some code to get injected which appears to be relying on the EJS runtime.
The offending code is part of a "rethrow" function which throws an exception on:
Unsure what the fix is here. Perhaps the "ejs" library should be including the utils module when "client" is true.
It might be more appropriate to make "compileDebug" default false, or at least document any side-effects. This took me by surprise.
The text was updated successfully, but these errors were encountered: