Package Exports
- extract-text-webpack-plugin
- extract-text-webpack-plugin/ExtractedModule
- extract-text-webpack-plugin/loader
- extract-text-webpack-plugin/loader.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (extract-text-webpack-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
extract text plugin for webpack
Usage example with css
var ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
module: {
loaders: [
{ test: /\.css$/, loader: ExtractTextPlugin.extract("style-loader", "css-loader") }
]
},
plugins: [
new ExtractTextPlugin("styles.css")
]
}It moves every require("style.css") in entry chunks into a separate css output file. So your styles are no longer inlined into the javascript, but separate in a css bundle file (styles.css). If your total stylesheet volume is big, it will be faster because the stylesheet bundle is loaded in parallel to the javascript bundle.
Advantages:
- Fewer style tags (older IE has a limit)
- CSS SourceMap (with
devtool: "sourcemap"andcss-loader?sourceMap) - CSS requested in parallel
- CSS cached separate
- Faster runtime (less code and DOM operations)
Caveats:
- Additional HTTP request
- Longer compilation time
- Complexer configuration
- No runtime public path modification
- No Hot Module Replacement
API
new ExtractTextPlugin([id: string], filename: string, [options])idUnique ident for this plugin instance. (For advanded usage only)filenamethe filename of the result file. May contain[name].optionsallChunksextract all chunks (by default only initial chunks)disabledisables the plugin
ExtractTextPlugin.extract([notExtractLoader], loader, [options])Creates an extracting loader from a existing loader.
notExtractLoader(optional) the loader(s) that should be used when the css is not extracted (i. e. in a additional chunk whenallChunks: false)loaderthe loader(s) that should be used for converting the resource to a css exporting module.optionspublicPathoverride thepublicPathsetting for this loader.
There is also a extract function on the instance. You should use this if you have more than one ExtractTextPlugin.