Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upHTML Meta Tag with msapplication-config breaks bundling #4490
Comments
|
To fix this in Parcel 2, the value |
vikene
added a commit
to vikene/parcel
that referenced
this issue
May 17, 2020
Issue parcel-bundler#4490
|
@mischnic I am new to the community, I tried fixing this bug. Let me know if I have to refactor my change or add an integration test. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Took a while to find this one...
Using an older version of parcel, ~1.9, everything worked correctly. The problem I had was that the older parcel version's server was running at +400% CPU on idle (That issue was reported here: #2456).
After upgrading to any version 1.10 or later, the command
parcel app/index.htmlwas throwing:The folder structure, briefly, is:
After commenting out line by line I found the culprit is in index.html, specifically the following line:
<meta name="msapplication-config" content="none"/Removing that line fixed the issue.
Successful build and server start
Thank you! Happy to donate once I've fulled swapped webpack out - I'm certainly excited to do so!