feat(postcss): require postcss as third-party style plugin for stylizing website on top of unocss

This commit is contained in:
Anda Toshiki 2023-09-17 02:03:52 -07:00
parent 35020a5fa7
commit f97df3af0e

View File

@ -26,6 +26,11 @@ export default defineConfig({
UnoCSS(),
MarkdownTransform(),
],
css: {
postcss: {
plugins: [require('postcss-nested')],
},
},
ssr: {
noExternal: ['@andatoshiki/vitepress-plugin-nprogress', '@arco-design/web-vue'],
},