[Vuejs]-ERROR Failed to compile with 1 errors This dependency was not found:

0👍

Do you have resolve in your webpack config?

resolve: {
  alias: {
    '@': path.resolve('path/to/your/source/folder')
  }
}

Document https://webpack.js.org/configuration/resolve/

Leave a comment