2

I am looking for the configuration YAML for TYPO3 tx_blog extension.

Geee
  • 2,217
  • 15
  • 30
Sonal
  • 33
  • 4

1 Answers1

2

Ext:blog come up with enhancing routing feature itself. It will give you basic YAML configuration below path:

'EXT:blog/Configuration/Routes/Default.yaml'

You just need to import these settings, use below code in your routing YAML configuration.

imports:
    - { resource: "EXT:blog/Configuration/Routes/Default.yaml" }

Hope this helps you!

Geee
  • 2,217
  • 15
  • 30
  • 1
    Thank you, Ghanshyam its works perfect. and here (EXT:blog/Configuration/Routes/) we got all the blog plugin's configuration. https://prnt.sc/olw978 – Sonal Jul 30 '19 at 09:07
  • Great @Sonal! Keep coding! – Geee Jul 30 '19 at 09:16