分类 web前端 下的文章
Webpack 入门教程
Webpack 是一个前端资源加载/打包工具。它将根据模块的依赖关系进行静态分析,然后将这些模块按照指定的规则生成对应的静态资源。
HBuilderX版与cli版互转指南参考arch HBuilderX版与cli版互转指南参考
uniapp 配置项目基础路径
在manifest.json文件中
CSS 多行省略失效 (-webkit-box-orient 失效) Second Autoprefixer control comment was ignored. Autoprefixer applies control comment to whole block, not to next rules.
webpck不能编译这个属性-webkit-box-orient: vertical
https://github.com/fanyifanbumaimeng/Articles/issues/48
/* autoprefixer: ignore next */
-webkit-box-orient: vertical;
autoprefixer版本是6.3.3,用 autoprefixer: off /可以解决问题,用/ autoprefixer: ignore next /不行。新版本,所以使用/ autoprefixer: ignore next */是可以的。