Reputation: 81
my project is working fine until ytd. I am not sure why, when I “ionic serve” the project, this error keeps prompting.
And I went to check my build folder in WWW, all the files are gone except these.
I have already tried the below methods but all doesn’t work for me:
Any idea, what I can do to install back my build folder files?
Upvotes: 8
Views: 12897
Reputation: 1
clear the cache of the browser whenever the new version of ionic lab is installed.
Upvotes: 0
Reputation: 9
I had the same problem but solved it by just clearing the browser data/history. NOTE that I'am using v4. beta ionic I hope that helps!
Upvotes: 0
Reputation: 96
The same problem I had when one of the plugin in "plugin.xml" file had wrong path. Wrong:
<config-file target="app/src/main/res/xml/config.xml" parent="/*">
Good:
<config-file target="res/xml/config.xml" parent="/*">
Upvotes: 0