[Vuejs]-Vue-router Failed to resolve async component default: ChunkLoadError: Loading chunk vendors~demo failed

-1👍

After several attempts, I used the following command to get the compiled js files, which was a mistake. These are good for development purposes.

npm run watch # npm run development -- --watch

or

yarn watch

Use the following command to get the output:

npm run prod

Script in package.json


    "scripts": {
        "dev": "npm run development",
        "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
        "watch": "npm run development -- --watch",
        "watch-poll": "npm run watch -- --watch-poll",
        "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --disable-host-check --config=node_modules/laravel-mix/setup/webpack.config.js",
        "prod": "npm run production",
        "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
    },
...

👤Saeed

Leave a comment