# HG changeset patch # User Alexandre Segura # Date 1486653190 -3600 # Node ID f5cae9eaa296e76b179820812832e2b55c6eaaab # Parent 27377f679c16c168fc899e3ded9155e9faad66ff Introduce PostCSS for auto-prefixing, extract vendors in chunk. diff -r 27377f679c16 -r f5cae9eaa296 package.json --- a/package.json Thu Feb 09 16:09:25 2017 +0100 +++ b/package.json Thu Feb 09 16:13:10 2017 +0100 @@ -44,6 +44,7 @@ "file-loader": "^0.8.4", "minimalist": "^1.0.0", "ncp": "^2.0.0", + "postcss-loader": "^1.2.2", "rimraf": "^2.5.4", "style-loader": "^0.13.1", "vue-loader": "^9.0.0", diff -r 27377f679c16 -r f5cae9eaa296 postcss.config.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/postcss.config.js Thu Feb 09 16:13:10 2017 +0100 @@ -0,0 +1,5 @@ +module.exports = { + plugins: [ + require('autoprefixer')({ /* ...options */ }) + ] +} diff -r 27377f679c16 -r f5cae9eaa296 src/iconolab/templates/iconolab_base.html --- a/src/iconolab/templates/iconolab_base.html Thu Feb 09 16:09:25 2017 +0100 +++ b/src/iconolab/templates/iconolab_base.html Thu Feb 09 16:13:10 2017 +0100 @@ -27,6 +27,7 @@ + {% block footer_js %} {% endblock %} {% if IS_JS_DEV_MODE %}