Enabling Source Maps with Webpack Encore
Warning: You are browsing the documentation for Symfony 7.0, which is no longer maintained.
Read the updated version of this page for Symfony 7.1 (the current stable version).
Source maps allow browsers to access the original code related to some asset (e.g. the Sass code that was compiled to CSS or the TypeScript code that was compiled to JavaScript). Source maps are useful for debugging purposes but unnecessary when executing the application in production.
Encore's default webpack.config.js
file enables source maps in the dev
build:
1 2 3 4 5 6 7 8
// webpack.config.js
// ...
Encore
// ...
.enableSourceMaps(!Encore.isProduction())
;
This work, including the code samples, is licensed under a
Creative Commons BY-SA 3.0 license.