vendredi 27 juillet 2018

Laravel 5.6 - webpack: Uncaught ReferenceError: jQuery is not defined

I got package.json:

  "devDependencies": {
    "axios": "^0.18.0",
    "bootstrap": "^4.1.3",
    "bootstrap-datepicker": "^1.7.1",
    "browser-sync": "^2.24.6",
    "browser-sync-webpack-plugin": "^2.0.1",
    "chart.js": "^2.7.2",
    "cross-env": "^5.2.0",
    "datatables": "^1.10.18",
    "easy-pie-chart": "^2.1.7",
    "font-awesome": "4.7.0",
    "fullcalendar": "^3.9.0",
    "jquery": "^3.3.1",
    "jquery-sparkline": "^2.4.0",
    "jvectormap": "^2.0.4",
    "laravel-mix": "^2.1.11",
    "load-google-maps-api": "^1.2.0",
    "lodash": "^4.17.10",
    "masonry-layout": "^4.2.2",
    "perfect-scrollbar": "^1.1.0",
    "popper.js": "^1.14.3",
    "skycons": "^1.0.0",
    "vue": "^2.5.16"
  }

with webpack.mix:

mix.sass('resources/assets/styles/index.scss', 'public/css/app.css')
    .js('resources/assets/scripts/index.js', 'public/js/app.js')
    .copyDirectory('resources/assets/static', 'public/static')
    .version()
    .sourceMaps();

and resource file:

enter image description here

so those files, looks like compiled properly by webpack >> npm run dev then I load it to blade template, but then in browser it show me that: jQuery is not defined...

Uncaught ReferenceError: jQuery is not defined

what's possibly went wrong here, why It can load jQuery while i have define it in package.json?

THanks!



from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2LULt5w
via IFTTT

Aucun commentaire:

Enregistrer un commentaire