Tim Landwerth

Results 15 comments of Tim Landwerth
trafficstars

@CalvinWalzel I had the same Issue and made a PR for it: #119

@ChrisShank Do you have a working setup for Typescript? If so, would you be willing to share it? I struggled with including support for `.ts` files…

@ChrisShank Thanks a lot, adding your changes worked like a charm 🎉 Now only vetur needs to remove the `The template root requires exactly one element.`-error, but I can ignore...

@glitteringkatie I had the same problem and solved it by conditionally including the files in `assets.rb` ```ruby # config/initializers/assets.rb Rails.application.config.assets.precompile += […] if Rails.env.development? ``` This way, we are using...

I want to add to this that I was also quite confused. Turbo-Rails always supports two possible variants: ``` turbo_stream.replace("myid") # Will target a single node with id="myid" turbo_stream.replace_all("#myid") #...