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

15 lines
303 B
JavaScript

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': {}
}
}