Closed bpinto closed 8 years ago
I could get around it with the following configuration:
{
test: /\.slm$/,
loaders: ["ng-cache?prefix=app/assets/templates:**&name=[name]", "slm"]
},
{
test: /\.html$/,
loaders: ["ng-cache?prefix=app/assets/templates:**&name=[name].[ext]"]
},
Hi,
I have the following files
template.html.slm
andanother_template.html
and would like to load both with.html
extension only as after parsing the files withslm
they are only html files.The current
[name]
only strips the last extension, how could I achieve this?