CEP panels / Enabling nodejs and mixed context makes Photoshop panel to not work
<Extension Id="cnation.server">
<DispatchInfo>
<Resources>
<MainPath>./localServer.html</MainPath>
<CEFCommandLine>
<Parameter>--enable-nodejs</Parameter>
<Parameter>--mixed-context</Parameter>
</CEFCommandLine>
</Resources>
<Lifecycle>
<AutoVisible>false</AutoVisible>
</Lifecycle>
<UI>
<Type>Custom</Type>
<Geometry>
<Size>
<Height>100</Height>
<Width>100</Width>
</Size>
</Geometry>
<Icons />
</UI>
</DispatchInfo>
</Extension>
If I remove this two lines: the panel works well but I cannot use Nodejs on the browser to call a Nodejs function:
<Parameter>--enable-nodejs</Parameter>
<Parameter>--mixed-context</Parameter>
Someone knows what is going on?
