I have a large project that has many *.html
files and many *.tpl.html
files.
I want to use a regular expression that allows me to differentiate between these two for my Webpack config.
I have tried using laziness to achieve this, like .*?\.html
but this also matches *.tpl.html
. https://regex101.com/r/a0fl4H/1
How can this be achieved?