webpack: Module not found: Error: Can't resolve folder ('src')

494 Views Asked by At

I'm getting this error message from webpack-dev-server:

ERROR in multi main
Module not found: Error: Can't resolve 'D:\projects\living\user-platform\project\src' in 'D:\projects\living\user-platfo
rm\project'
 @ multi main

Currently, my webpack config files are:

Current directory structure:

├───.vscode
├───config
│   ├───html-elements-plugin
│   └───modules
└───src
    ├───app
    │   ├───another
    │   ├───dashboard
    │   ├───error
    │   ├───layout
    │   │   ├───chat-sidebar
    │   │   │   └───chat-message
    │   │   ├───navbar
    │   │   ├───notifications
    │   │   ├───pipes
    │   │   ├───sidebar
    │   │   └───widget
    │   ├───login
    │   ├───profile
    │   ├───scss
    │   ├───signin
    │   └───validate
    └───assets
        ├───css
        ├───demo
        │   └───notifications
        ├───fonts
        │   ├───font-awesome
        │   ├───glyphicons
        │   └───google
        ├───icon
        ├───img
        │   └───people
        └───mock-data
0

There are 0 best solutions below