Disable jsreport studio
-
Hello all !
I would like to use jsreport only on code mode (e.g. through nodejs).
Is there a way to disable jsreport studio ? (e.g. disable the web access)Thanks in advance !
-
Yes,
jsreport studio is just an extension as any other. So you can disable it using standard way.
https://jsreport.net/learn/configuration#disabling-extensionsYou probably want to disable also the rest api. This is done by disabling
express
extension.{ ... "extensions": { "studio": { "enabled": false }, "express": { "enabled": false } } }
-
Perfect ! Thank you !!