[Vuejs]-Disable to load chunk files via bootstrap script

0👍

Just discovered the problem, actually it’s not a problem, just my mistake!
If you don’t want chunking files, please removed Grouping Components in the Same Chunk in your routes.
Don’t use (for example):

{
    path: '/login',
    name: 'Login',
    component: () => import('../components/Login.vue'),
  },

Use:

   {
    path: '/login',
    name: 'Login',
    component: Login,
  },

End problems will gone!
Thanks for this article https://pocketsun.net/web-development/vuejs-webpack-loading-chunk-files-failed/

Leave a comment