We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
因为 webpack 只能处理 js 文件,所以对于项目中的其他资源,我们都需要指定一个或多个 loader 来处理它们。loader 本质上是一个函数,输入模块内容,返回处理后的结果,如果指定了多个 loader,那么它们都按从右往左的顺序依次执行,上一个 loader 的输出会作为下一个 loader 的输入。
常用的一些 loader
打包图片
limit
打包样式
postcss.config.js
autoprefixer
打包字体
The text was updated successfully, but these errors were encountered:
No branches or pull requests
因为 webpack 只能处理 js 文件,所以对于项目中的其他资源,我们都需要指定一个或多个 loader 来处理它们。loader 本质上是一个函数,输入模块内容,返回处理后的结果,如果指定了多个 loader,那么它们都按从右往左的顺序依次执行,上一个 loader 的输出会作为下一个 loader 的输入。
常用的一些 loader
打包图片
limit
配置项打包样式
postcss.config.js
进行配置,比如使用autoprefixer
这个插件来自动添加厂商前缀打包字体
The text was updated successfully, but these errors were encountered: