-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
49 lines (49 loc) · 1.36 KB
/
vite.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import { defineConfig } from 'vite';
import { resolve } from 'path'
export default defineConfig({
base: './',
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
},
},
postcss: {
// 支持移动端
autoprefixer: { //css兼容前缀
overrideBrowserslist: [
'Android 4.1',
'iOS 7.1',
'Chrome >31',
'not id <=11'
]
},
plugins: [
require('postcss-pxtorem')({
'rootValue': 75, //这个值为设计稿的宽,一般是750。如果设计稿是375,则为37.5
'unitPrecision': 6, // 转化为rem后保留的小数
'replace': true, //rem替换px
'mediQuery': true, //兼容媒体查询 允许在媒体查询中转换px
'minPixelValue': 1, //设置要替换的最小像素值
'exclude': /node_modules/i //node_modules
}),
],
}
},
build: {
rollupOptions: {
input: {
index: resolve(__dirname, 'index.html'),
},
// output: {
// entryFileNames: 'src/[name].js', // 设置输出文件名为入口文件名
// chunkFileNames: 'chunks/[name].js', // 设置代码分割后的文件名
// assetFileNames: 'assets/[name].[ext]', // 设置静态资源文件名
// }
}
},
server: {
port: 3000,
host: '0.0.0.0',
},
});