mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
15 lines
306 B
JavaScript
15 lines
306 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-preset-env': {}
|
|
}
|
|
}
|