You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.1 KiB
51 lines
2.1 KiB
import { defineConfig } from 'vite' |
|
import vue from '@vitejs/plugin-vue' |
|
import path from 'path' |
|
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' |
|
//@ts-ignore |
|
import postcssPluginPx2rem from 'postcss-plugin-px2rem' //引入插件 |
|
|
|
//配置参数 |
|
const px2remOptions = { |
|
rootValue: 192, //换算基数, 默认100 ,也就是1440px ,这样的话把根标签的字体规定为1rem为50px,这样就可以从设计稿上量出多少个px直接在代码中写多少px了 |
|
unitPrecision: 5, //允许REM单位增长到的十进制数字,其实就是精度控制 |
|
// propWhiteList: [], // 默认值是一个空数组,这意味着禁用白名单并启用所有属性。 |
|
// propBlackList: [], // 黑名单 |
|
// exclude:false, //默认false,可以(reg)利用正则表达式排除某些文件夹的方法,例如/(node_module)/ 。如果想把前端UI框架内的px也转换成rem,请把此属性设为默认值 |
|
// selectorBlackList: [], //要忽略并保留为px的选择器 |
|
// ignoreIdentifier: false, //(boolean/string)忽略单个属性的方法,启用ignoreidentifier后,replace将自动设置为true。 |
|
// replace: true, // (布尔值)替换包含REM的规则,而不是添加回退。 |
|
mediaQuery: false, //(布尔值)允许在媒体查询中转换px |
|
minPixelValue: 0, //设置要替换的最小像素值(3px会被转rem)。 默认 0 |
|
} |
|
export default defineConfig({ |
|
plugins: [ |
|
vue(), |
|
// 配置svg插件 |
|
createSvgIconsPlugin({ |
|
// Specify the icon folder to be cached |
|
iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')], |
|
// Specify symbolId format |
|
symbolId: 'icon-[dir]-[name]', |
|
}), |
|
], |
|
resolve: { |
|
alias: { |
|
'@': path.resolve('./src'), // 相对路径别名配置,使用 @ 代替 src |
|
}, |
|
}, |
|
css: { |
|
preprocessorOptions: { |
|
scss: { |
|
javascriptEnabled: true, |
|
additionalData: '@import "./src/styles/variable.scss";', |
|
}, |
|
}, |
|
postcss: { |
|
plugins: [ |
|
// 配置响应式插件 |
|
postcssPluginPx2rem(px2remOptions), |
|
], |
|
}, |
|
}, |
|
})
|
|
|