-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
Turn off quote stripping in HTML minify #12
Comments
Would turning off |
Hi @devgeeks I can confirm that the following fixes the reload issue: 1- turning off
|
@motatoes OK. Thanks for working that out. I'll update all three templates with those fixes and publish to npm! |
devgeeks
added a commit
that referenced
this issue
Nov 20, 2017
- removed `removeAttributeQuotes` minification - changed `cordova.js` script tag to exactly match the one the dev app tries to replace ``` <script type="text/javascript" src="cordova.js"></script> ``` Fixes #12
This was referenced Nov 20, 2017
Published to NPM as well. Thanks @motatoes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Related to this issue, I was having problems testing my app in the phonegap app, since it did not refresh automatically. The fix for me was to have the
<script type="text/javascript" src="cordova.js"></script>
as the last script in the document (it is strange).As a fix for this I had to:
inject: true
toinject: false
in bothbuild\webpack-dev.conf.js
andbuild\webpack-prod.conf.js
.src\index.html
with:I can submit a PR with these changes if required :)
The text was updated successfully, but these errors were encountered: