Answers for "module not found: error: can't resolve './src' webpack angular"

1

react js Module not found: Can't resolve 'folder' in 'src'

// create a jsconfig.json file in your root dir(where package.json is located) and add this:
{
  "compilerOptions": {
    "baseUrl": "src"
  }
}
Posted by: Guest on July-16-2021
4

webpack Module not found: Error: Can't resolve '../

resolve: {
    modules: [resolve(process.cwd(), 'src'), 'node_modules'],
    extensions: ['*', '.js', '.jsx', '.json'],
    symlinks: false,
    cacheWithContext: false
  }
Posted by: Guest on September-15-2020

Code answers related to "module not found: error: can't resolve './src' webpack angular"

Code answers related to "Javascript"

Browse Popular Code Answers by Language