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

15 lines
306 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,
2018-01-13 05:22:11 +00:00
path: [rootDir, modulesDir]
2017-11-21 01:54:02 +00:00
},
'postcss-url': {},
'postcss-preset-env': {}
2017-11-21 01:54:02 +00:00
}
}