css-sourcemaps-webpack-plugin
v1.0.3
Published
Simple CSS Sourcemap configuration for CSS, Less, Stylus and Sass
Downloads
29
Maintainers
Readme
CSS Sourcemap Webpack Plugin
This is a webpack plugin that simplifies the usage of CSS source maps.
Installation
Install the plugin with npm:
$ npm install css-sourcemaps-webpack-plugin --save-dev
Usage
var CssSourcemapPlugin = require('css-sourcemaps-webpack-plugin');
module.exports = {
entry: 'index.js',
output: {
path: 'dist',
filename: 'index_bundle.js'
},
module: {
loaders: [
{ test: /\.less$/, loader: 'style!css!less' }
]
},
plugins: [new CssSourcemapPlugin()]
}
Production
You can easily disable the plugin for your production build:
var CssSourcemapPlugin = require('css-sourcemaps-webpack-plugin');
module.exports = {
entry: 'index.js',
output: {
path: 'dist',
filename: 'index_bundle.js'
},
module: {
loaders: [
{ test: /\.scss$/, loader: 'style!css!sass' }
]
},
plugins: [new CssSourcemapPlugin({disable: true})]
}