代码拉取完成,页面将自动刷新
同步操作将从 HHH917/uniapp-vue3-ts-tailwindcss-demo 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const path = require('path')
module.exports = {
parser: require('postcss-comment'),
plugins: [
require('postcss-import')({
resolve(id, basedir, importOptions) {
if (id.startsWith('~@/')) {
return path.resolve(process.env.UNI_INPUT_DIR, id.substr(3))
} else if (id.startsWith('@/')) {
return path.resolve(process.env.UNI_INPUT_DIR, id.substr(2))
} else if (id.startsWith('/') && !id.startsWith('//')) {
return path.resolve(process.env.UNI_INPUT_DIR, id.substr(1))
}
return id
}
}),
require('autoprefixer')({
remove: process.env.UNI_PLATFORM !== 'h5'
}),
// Thanks to lcysgsg [https://github.com/lcysgsg]
require('tailwindcss')({ config: './tailwind.config.js' }),
require('@dcloudio/vue-cli-plugin-uni/packages/postcss'),
// [ WXSS 文件编译错误]
//.focus-within\:sr-only:focus-within{
// 不认识这个 \: 我们需要replace
// https://developers.weixin.qq.com/community/develop/doc/000ce8ba720c683326cb6b8215b000?highLine=wxss%2520%25E8%25BD%25AC%25E4%25B9%2589
// require('postcss-class-rename')({
// '\\\\\:': '-colon-',
// // '\\\\/': '_',
// '\\\\\.': '-dot-'
// })
]
//-dot-inset-0\-dot-5{
}
// const path = require('path')
// module.exports = {
// parser: require('postcss-comment'),
// plugins: [
// require('postcss-import')({
// resolve(id, basedir, importOptions) {
// if (id.startsWith('~@/')) {
// return path.resolve(process.env.UNI_INPUT_DIR, id.substr(3))
// } else if (id.startsWith('@/')) {
// return path.resolve(process.env.UNI_INPUT_DIR, id.substr(2))
// } else if (id.startsWith('/') && !id.startsWith('//')) {
// return path.resolve(process.env.UNI_INPUT_DIR, id.substr(1))
// }
// return id
// }
// }),
// require("tailwindcss")({
// config: "./tailwind.config.js"
// }),
// require('@dcloudio/vue-cli-plugin-uni/packages/postcss'),
// /* ******* 引入tailwindcss ******* */
// // // 根据平台差异进行不同的样式处理
// ...(
// process.env.UNI_PLATFORM !== "h5" ?
// [
// // 使用postcss-class-name 包将小程序不支持的类名写法转换为支持的类名,如:"hover:xxx"
// require("postcss-class-rename")({
// "\\\\:": "--",
// "\\\\/": "--",
// "\\\\.": "--",
// ".:": "--",
// "\\\*": "--",
// // 引用 tailwindcss-miniprogram-preset 预设时
// '\\\\:': '--',
// '\\\\/': '_',
// })
// ] :
// [
// require("autoprefixer")({
// remove: true,
// }),
// ]
// ),
// ]
// }
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。