Cam Stuart
Cam Stuart
This would be really useful. While creating content allow users to select “exclude from sitemap” (default = included) so content can be published but not seo indexed. I think it...
> We have a sitemap gen on dockyard.com but I don't think it's made it's way back to Beacon yet. Should be on the spec list for post 0.1 though...
> > While creating content allow users to select “exclude from sitemap” (default = included) so content can be published but not seo indexed. > > That would be a...
> I don't think we have it on the roadmap yet, it's definitely something we should port over though Sounds like a good idea, if there is something we can...
+1 to this. My app is complaining rather verbosely in the chrome console when I load a page with a live svelte component on it
Good questions, generating a nonce seems easy enough with: ```elixir # endpoint.ex defmodule MyApp.Endpoint do use Phoenix.Endpoint, otp_app: :myapp defp generate_nonce() do :crypto.strong_rand_bytes(16) |> Base.encode64() end plug Plug.Static, at: "/",...
In case anyone else has similar content security policy (CSP) issues, I was able to work around it like this: I created a plug in `myapp_web/plugs/csp_header.ex` ```elixir defmodule MyAppWeb.Plugs.CSPHeader do...
Understandable, I'm not fussed about the particular tooling, I'm more looking for a reliable way of executing my cli app and more importantly tests as I develop. I am yet...
I agree, the JavaScript world is chaotic. Perhaps then, the simplest approach is have a single repo with the gomponents and a github action that generates a website on github...