We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e149fb commit 2e59166Copy full SHA for 2e59166
.browserslistrc
@@ -0,0 +1,4 @@
1
+>1%,
2
+Chrome > 20
3
+last 4 versions,
4
+Firefox ESR
scripts/webpack/postcss.config.js
@@ -1,7 +1,9 @@
-module.exports = {
- plugins: {
- 'autoprefixer': {},
- 'postcss-reporter': {},
5
- 'postcss-browser-reporter': {},
6
- }
7
-}
+module.exports = () => {
+ return {
+ plugins: {
+ autoprefixer: {},
+ 'postcss-reporter': {},
+ 'postcss-browser-reporter': {},
+ }
8
+ };
9
+};
scripts/webpack/sass.rule.js
@@ -19,7 +19,7 @@ module.exports = function(options) {
19
loader: 'postcss-loader',
20
options: {
21
sourceMap: options.sourceMap,
22
- config: { path: __dirname + '/postcss.config.js' },
+ config: { path: __dirname },
23
},
24
25
{
0 commit comments