mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
18 lines
327 B
JavaScript
18 lines
327 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': {}
|
|
}
|
|
}
|