Search code examples
javascriptwebpackdeveloper-tools

What is the difference between sourcemaps in webpack


What is the difference between " inline -source -map " and only " source -map " in Webpack ?


Solution

  • The first is (surprise!) inlined, meaning it's included in the generated .js file. The latter writes it to a separat file. See the documentation for more details.