mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 18:34:50 +00:00
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import { defu } from 'defu'
|
|
import createResolver from 'postcss-import-resolver'
|
|
import { defineUntypedSchema } from 'untyped'
|
|
|
|
export default defineUntypedSchema({
|
|
postcss: {
|
|
/**
|
|
* Options for configuring PostCSS plugins.
|
|
*
|
|
* https://postcss.org/
|
|
* @type {Record<string, any>}
|
|
*/
|
|
plugins: {
|
|
/**
|
|
* https://github.com/postcss/postcss-import
|
|
*/
|
|
'postcss-import': {
|
|
$resolve: async (val, get) => val !== false ? defu(val || {}, {
|
|
resolve: createResolver({
|
|
alias: { ...(await get('alias')) },
|
|
modules: [
|
|
await get('srcDir'),
|
|
await get('rootDir'),
|
|
...(await get('modulesDir'))
|
|
]
|
|
})
|
|
}) : val,
|
|
},
|
|
|
|
/**
|
|
* https://github.com/postcss/postcss-url
|
|
*/
|
|
'postcss-url': {},
|
|
|
|
/**
|
|
* https://github.com/postcss/autoprefixer
|
|
*/
|
|
autoprefixer: {},
|
|
|
|
cssnano: {
|
|
$resolve: async (val, get) => val ?? !(await get('dev') && {
|
|
preset: ['default', {
|
|
// Keep quotes in font values to prevent from HEX conversion
|
|
// https://github.com/nuxt/nuxt/issues/6306
|
|
minifyFontValues: { removeQuotes: false }
|
|
}]
|
|
})
|
|
}
|
|
}
|
|
}
|
|
})
|