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的能力:
在webpack内部中,任何文件都是模块,不仅仅只是 js 文件。默认情况下,在遇到 import 或者 loader 加载模块的时候,webpack只支持对 js 文件打包。像 css、html、png等这些类型文件的时候,webpack则无能为力,这时候就需要配置对应的 loader 进行文件内容的解析
参考链接 常用 loader 参考链接
The text was updated successfully, but these errors were encountered:
No branches or pull requests
webpack的能力:
常用的 loader
在webpack内部中,任何文件都是模块,不仅仅只是 js 文件。默认情况下,在遇到 import 或者 loader 加载模块的时候,webpack只支持对 js 文件打包。像 css、html、png等这些类型文件的时候,webpack则无能为力,这时候就需要配置对应的 loader 进行文件内容的解析
loader 和 plugin 的区别
参考链接
常用 loader 参考链接
The text was updated successfully, but these errors were encountered: