1
1
mirror of https://github.com/primer/css.git synced 2024-12-27 08:05:06 +03:00

Fix PostCSS include path

This commit is contained in:
Michelle Tilley 2020-08-10 10:41:03 -07:00
parent 8d98afd79e
commit b38f131dd3
No known key found for this signature in database
GPG Key ID: 810E3A96D4CF00F4

View File

@ -1,3 +1,5 @@
const path = require('path')
module.exports = {
parser: 'postcss-scss',
map: {
@ -6,7 +8,7 @@ module.exports = {
},
plugins: {
'postcss-node-sass': {
includePaths: ['node_modules'],
includePaths: [path.join(__dirname, 'node_modules')],
outputStyle: 'compressed'
},
'autoprefixer': {}