Does *ns*
work in cljs? I'm trying to write a macro and I need to construct a fully qualified symbol
It keeps returning nil, though
are you using self hosted CLJS?
nope, in the browser with shadow-cljs
@datran *ns*
works as long as you use it IN the macro. not in the code the macro returns.
Does anyone have experience with writing chrome extensions with CLJS? I made a really basic setup with re-frame but I'm getting a lot of app.js:584 Refused to execute inline script because it violates the following Content Security Policy directive
errors
Adding "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
to `manifest.json actually seems to work. I'm not sure of the security risks though