Ionic 3, error installing app-script 1.3.0

0

Complementing the previous question, I am in an ionic environment 3, I give a npm install but it is missing that app-script 1.3.0, msm installing locally the ionic 2, npm install again msm error I believe it is a 404, the package.json for app-script 2.0 or 3.0 yes yes it installs, but to give ionic serves it appears the following message undefined webpack jsonp

    
asked by anonymous 20.06.2018 / 10:14

1 answer

0

Friend although your question is not very clear I went through this problem a while ago when I was reactivating an old project.

If it is the same thing, I added the following in the index.html file:

<script src="build/vendor.js"></script>

because it is in vendor.js where all modules of the node are defined.

If it does not really work, try running the commands below at the command prompt:

ionic cordova platform remove nomePlataforma

and then the command:

ionic cordova platform add nomePlataforma

After running the commands try to run again.

    
21.06.2018 / 03:10