2 Star 0 Fork 0

keep/web3-wallet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
dadong 提交于 2024-08-02 15:14 . 更改移动端适配并完成首页布局
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import Components from 'unplugin-vue-components/vite'
import { VantResolver } from 'unplugin-vue-components/resolvers'
import postCssPxToRem from 'postcss-pxtorem'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
Components({
dts: false,
// 原因:Toast Confirm 这类组件的样式还是需要单独引入,样式全局引入了,关闭自动引入
resolvers: [VantResolver({ importStyle: false })]
})
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
port: 8088,//端口号
host: true,//ip地址 或 '0.0.0.0' 或 "loaclhost"
open: false, //启动后是否自动打开浏览器
https: false, // 是否开启 https
},
css: {
postcss: {
plugins: [
postCssPxToRem({
unitToConvert: 'px', // 要转化的单位
viewportWidth: 750, // UI设计稿的宽度
rootValue: 75,
propList: ['*'],
// 过滤掉vant
selectorBlackList: [".van"],
exclude: "/node_modules",
})
]
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/keep1996/web3-wallet.git
git@gitee.com:keep1996/web3-wallet.git
keep1996
web3-wallet
web3-wallet
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385