summaryrefslogtreecommitdiff
path: root/web-ui/postcss.config.js
diff options
context:
space:
mode:
authorAnike Arni <aarni@thoughtworks.com>2017-02-08 13:49:54 -0200
committerAnike Arni <aarni@thoughtworks.com>2017-02-08 13:51:37 -0200
commitea852b12e33b0e50ba7986c33ad68be5e38305ba (patch)
treee852ab83caeca6158ffc78e3cda100157ddb9f88 /web-ui/postcss.config.js
parent8892fa5095064af6718e064d29e71b0a7bf8212d (diff)
[#922] Add css autoprefixer for compatibility with browsers
with @tayanefernandes
Diffstat (limited to 'web-ui/postcss.config.js')
-rw-r--r--web-ui/postcss.config.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/web-ui/postcss.config.js b/web-ui/postcss.config.js
new file mode 100644
index 00000000..88752c6c
--- /dev/null
+++ b/web-ui/postcss.config.js
@@ -0,0 +1,5 @@
+module.exports = {
+ plugins: [
+ require('autoprefixer')
+ ]
+}