Skip to main content
Solved

Debugging custom blocks locally

  • May 26, 2020
  • 4 replies
  • 41 views

Is there a way at present to debug a custom block on my local while building it?

It would be great if I can such debug error like these with better and more helpful build time error messages.

Best answer by Harshit_Juneja

Was going to chime in with the same, I’ve found console.logging my way through different parts to be extremely helpful and work the same as any other web app if helpful! :slightly_smiling_face:


Thanks @Shaun_Van_Weelden! I figured out that I ended up importing a react component that was using css from a file. Since the blocks design system is css in JS styles. It ended up breaking the build. I am more getting more comfortable with blocks by building more.

Much appreciated :slightly_smiling_face:

4 replies

  • Author
  • Inspiring
  • 6 replies
  • May 26, 2020

@Kasra any leads/direction :grinning_face_with_big_eyes: ?


Forum|alt.badge.img+4
  • Inspiring
  • 192 replies
  • May 26, 2020

Hm… usually the error messages are a little more helpful than that!

Two questions:

  • What browser are you testing in?
  • What do you see if you open the browser’s developer console then reload your block? Is there a helpful error message in there?

Generally you can use the browser developer tools to help debug blocks as you would other web apps. For example, if open the browser tools and write debugger; in your block’s code, that will act as a breakpoint.


  • Known Participant
  • 10 replies
  • May 27, 2020

Was going to chime in with the same, I’ve found console.logging my way through different parts to be extremely helpful and work the same as any other web app if helpful! :slightly_smiling_face:


  • Author
  • Inspiring
  • 6 replies
  • Answer
  • May 30, 2020

Was going to chime in with the same, I’ve found console.logging my way through different parts to be extremely helpful and work the same as any other web app if helpful! :slightly_smiling_face:


Thanks @Shaun_Van_Weelden! I figured out that I ended up importing a react component that was using css from a file. Since the blocks design system is css in JS styles. It ended up breaking the build. I am more getting more comfortable with blocks by building more.

Much appreciated :slightly_smiling_face: