How i can add less plugin like "less-plugin-inline-svg" | Community
Skip to main content
Unnikrishnankv
Level 3
August 25, 2020
Solved

How i can add less plugin like "less-plugin-inline-svg"

  • August 25, 2020
  • 1 reply
  • 1061 views

I need to add a less plugin(less-plugin-inline-svg) to create a svg data url. is there any option to add new plugin to compiler.

 

Thanks!, 

Unnikrishnan 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Theo_Pendle

Hello @unnikrishnankv

I don't believe there is, but even if there were, I don't think it would be the best way to proceed.

If you want to do advanced pre-processing then I think your best bet is to do so during a build process, by creating a front-end project as is commonly done when using the later version of the AEM Maven Archetype. Here are some advantages:

  1. This is the direction that the AEM community is going, so you're more likely to be in line with best practices
  2. The documentation around npm, webpack, node, etc. is much vaster than the documentation on AEM compilers
  3. You will decouple your pre-processing from AEM, meaning that your website CSS can't be broken by a future AEM release
  4. You have complete control over every aspect of your build for LESS, JS, resources, etc.

1 reply

Theo_Pendle
Theo_PendleAccepted solution
Level 8
August 26, 2020

Hello @unnikrishnankv

I don't believe there is, but even if there were, I don't think it would be the best way to proceed.

If you want to do advanced pre-processing then I think your best bet is to do so during a build process, by creating a front-end project as is commonly done when using the later version of the AEM Maven Archetype. Here are some advantages:

  1. This is the direction that the AEM community is going, so you're more likely to be in line with best practices
  2. The documentation around npm, webpack, node, etc. is much vaster than the documentation on AEM compilers
  3. You will decouple your pre-processing from AEM, meaning that your website CSS can't be broken by a future AEM release
  4. You have complete control over every aspect of your build for LESS, JS, resources, etc.