webpack and Babel

webpack 简单来说是一个 module bundler,把很多模块打包成一个 bundle.js 的工具。

这里的模块不仅仅指的是 require js 代码,也包括 css 的代码, webpack 可以通过 加载 css loader, stlye loader 来 require css 文件。

在 webpack.config.js 中:

loader: 'style!css!autoprefixer!sass'

添加 React 的 jsx 代码,加载 babel loader 即可.

loader: 'babel'

因为有了 loader 的概念,使得 webpack 无所不能

你可能感兴趣的:(webpack and Babel)