vite项目postcss-px-to-viewport-8-plugin'
时间: 2023-12-20 20:32:33 浏览: 166
vite-plugin-sloth:全新的静态网站生成,使用 HTML-first 方法来构建网站。 由 :high_voltage: Vite 提供支持
在vite项目中使用postcss-px-to-viewport-8-plugin插件的步骤如下:
1. 首先,确保你已经安装了vite项目。如果没有安装,请使用以下命令进行安装:
```shell
npm install create-vite -g
```
2. 创建一个新的vite项目。在命令行中运行以下命令:
```shell
create-vite my-project
```
3. 进入到项目目录中:
```shell
cd my-project
```
4. 安装postcss-px-to-viewport-8-plugin插件。在命令行中运行以下命令:
```shell
npm install postcss-px-to-viewport-8-plugin --save-dev
```
5. 打开项目根目录下的postcss.config.js文件,并添加postcss-8-plugin插件的配置。示例如下:
```javascript
module.exports = {
plugins: [
require('postcss-px-to-viewport-8-plugin')({
viewportWidth: 375, // 视窗的宽度,对应设计稿的宽度
viewportHeight: 667, // 视窗的高度,对应设计稿的高度
unitPrecision: 5, // 指定`px`转换为视窗单位值的小数位数
viewportUnit: 'vw', // 指定需要转换成的视窗单位,建议使用vw
selectorBlackList: ['.ignore', '.hairlines'], // 指定不需要转换的类
minPixelValue: 1, // 小于或等于`1px`不转换为视窗单位
mediaQuery: false // 允许在媒体查询中转换`px`
})
]
}
```
6. 保存文件并重新启动vite项目。在命令行中运行以下命令:
```shell
npm run dev
```
现在,你的vite项目已经配置了postcss-px-to-viewport-8-plugin插件,可以自动将px单位转换为vw单位。
阅读全文