mirror of
https://github.com/JOYCEQL/magic-resume.git
synced 2026-05-06 22:02:27 +08:00
13 lines
243 B
JavaScript
13 lines
243 B
JavaScript
/** @type {import('postcss-load-config').Config} */
|
|
const config = {
|
|
plugins: {
|
|
"postcss-normalize": {
|
|
// 配置选项
|
|
allowDuplicates: false // 不允许重复导入
|
|
},
|
|
tailwindcss: {}
|
|
}
|
|
};
|
|
|
|
export default config;
|