Hey Cyllo folks, how do I add custom CSS and JS to a module's manifest? I'm trying to tweak the styling a bit. Any tips?
Welcome!
Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.
This question has been flagged
1
Reply
10
Views
That's a great question about how to manage assets in your manifest! Here's how you can add all your JavaScript, XML templates, and CSS files directly under the `assets` key. ``` 'assets': { 'web.assets_backend': [ 'my_module/static/src/js/product_category.js', 'my_module/static/src/xml/product_templates.xml', 'my_module/static/src/css/style.css', ], 'web.assets_frontend': [], }, ```