I have less css included in bootstrap.css.map file. How to include .map files inside a laravel public/css/app.css.
I have less css included in bootstrap.css.map file. How to include .map files inside a laravel public/css/app.css.
If you are using Laravel Mix then it provides a fluent API for defining Webpack build steps for your Laravel application using several common CSS and JavaScript pre-processors.
Source maps can be activated by calling the mix.sourceMaps() method in your webpack.mix.js file.
mix.css('resources/css/app.css', 'public/css')
.sourceMaps();