azabroflovski

Results 7 comments of azabroflovski

> @typicode Would you add this feature? Oh, thanks

any updates? burning question :)

@nsina ```ts definePageMeta({ documentDriven: true, }); ``` works for me, thanks

I NEED THIS!!!!! currently I'm using nats-cli directly from code, like this: ```elixir def create_consumer(stream, consumer_config) do File.write!("/tmp/consumer_[hash].json", consumer_config) System.cmd("nats", [ "consumer", "add", stream, "--config", "/tmp/consumer.json" ]) end ``` I'm...