mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 02:14:44 +00:00
17 lines
334 B
JavaScript
17 lines
334 B
JavaScript
const createData = async () => {
|
|
await new Promise(resolve => setTimeout(resolve, 500))
|
|
return {
|
|
build: {
|
|
postcss: {
|
|
postcssOptions: () => ({
|
|
plugins: [
|
|
['postcss-preset-env', { features: { 'custom-selectors': true } }]
|
|
]
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export default createData
|