Skip to content

Instantly share code, notes, and snippets.

@muhibbudins
Created October 14, 2017 00:45
Show Gist options
  • Save muhibbudins/3294c886d1599661c3050744f96d7327 to your computer and use it in GitHub Desktop.
Save muhibbudins/3294c886d1599661c3050744f96d7327 to your computer and use it in GitHub Desktop.
Example webpack autoprefixer from https://github.com/postcss/autoprefixer Raw
// webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.css$/,
use: ["style-loader", "css-loader", "postcss-loader"]
}
]
}
}
// postcss.config.js
module.exports = {
plugins: [
require('autoprefixer')
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment