1 Star 0 Fork 13

dengany/uniapp-vue3-ts-scaffold

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
postcss.config.js 853 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhangzhichao02 提交于 2024-01-08 11:56 . v1.0.0
const path = require("path");
const comment = require("postcss-comment");
const tailwindcss = require("tailwindcss");
const autoprefixer = require("autoprefixer");
const postcssImport = require("postcss-import");
module.exports = {
parser: comment,
plugins: [
postcssImport({
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;
},
}),
tailwindcss({
config: "./tailwind.config.js",
}),
autoprefixer({
remove: true,
}),
],
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/dengany/uniapp-vue3-ts-scaffold.git
git@gitee.com:dengany/uniapp-vue3-ts-scaffold.git
dengany
uniapp-vue3-ts-scaffold
uniapp-vue3-ts-scaffold
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385