WebLoader
WebLoader copied to clipboard
tempPath parameter in Neon is not taken in css and js section separately
In Neon config:
webloader:
css:
default:
tempDir: 'css/min'
tempPath: 'css/min'
files:
- %wwwDir%/css/style.css
js:
default:
tempDir: 'js/min'
tempPath: 'js/min'
files:
- %wwwDir%/js/script.js
this will result into this urls is final html file:
<link rel="stylesheet" type="text/css" href="/mypages/www/js/min/cssloader-739f22122081.css">
<script type="text/javascript" src="/mypages/www/js/min/jsloader-e6ef6ebcc598.js"></script>
Problem is, that css want to download from js folder.
I see. Can you please send a PR with fix?
My programming skills are too far from even thinking about sending any pull request. Sorry...
Edit: OK, I tried. I did pull request fixing this issue. I hope I didn't do any mess..