Nuxt/test/fixtures/with-config/postcss.config.js

18 lines
327 B
JavaScript
Raw Normal View History

2017-11-21 01:54:02 +00:00
const path = require('path')
const modulesDir = path.join(__dirname, '..', '..', '..', 'node_modules')
const rootDir = __dirname
module.exports = {
plugins: {
'postcss-import': {
root: rootDir,
path: [
rootDir,
modulesDir
]
},
'postcss-url': {},
'postcss-cssnext': {}
}
}