13 lines
294 B
JavaScript
13 lines
294 B
JavaScript
// PostCSS 配置文件
|
||
// 此文件用于防止 Vite 向上查找父目录的 PostCSS 配置
|
||
// 本项目使用普通 CSS,不需要 PostCSS 插件
|
||
|
||
export default {
|
||
plugins: {
|
||
// 如果需要 PostCSS 插件,可以在这里添加
|
||
// 例如:autoprefixer, tailwindcss 等
|
||
}
|
||
}
|
||
|
||
|