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:
parent
8d98afd79e
commit
b38f131dd3
@ -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': {}
|
||||
|
Loading…
Reference in New Issue
Block a user