We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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>
<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.
The text was updated successfully, but these errors were encountered:
I see. Can you please send a PR with fix?
Sorry, something went wrong.
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..
Param tempPath is taken right [Fixes janmarek#120]
a039b7d
- When tempPath was set in neon in JS and CSS section, first occurrence was overwritten by last occurrence.
No branches or pull requests
In Neon config:
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.
The text was updated successfully, but these errors were encountered: