小星加油
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
425 B

5 months ago
const path = require("path");
function resolve(dir) {
return path.join(__dirname, dir); // __dirname是当前目录的绝对路径
}
module.exports = {
chainWebpack(config) {
config.resolve.alias
.set("@", resolve("src"))
.set("api", resolve("src/api"))
.set("utils", resolve("src/utils"))
.set("components", resolve("src/components"));
},
transpileDependencies: ["@dcloudio/uni-ui"],
};