Giter Club home page Giter Club logo

fast-css-split-webpack-plugin's Introduction

fast-css-split-webpack-plugin

Split your CSS to solve IE9 selector limitation problem.

Using webpack to generate your CSS is fun for some definitions of fun. Unfortunately the fun stops when you have a large app and need IE9 support because IE9 will ignore any more than ~4000 selectors in your lovely generated CSS bundle. The solution is to split your CSS bundle smartly into multiple smaller CSS files. Now you can.โ„ข Supports source-maps.

why faster?

The original css-split-webpack-plugin use postcss to split css, when css file size becomes larger, postcss will be very slow. fast-css-split-webpack plugin use css-split instead of postcss, provide 10 times faster performance of css spliting.

Performance benchmark: https://github.com/yibn2008/css-split#performance

Installation

npm install --save fast-css-split-webpack-plugin

Usage

Simply add an instance of FastCSSSplitWebpackPlugin to your list of plugins in your webpack configuration file after MiniCssExtractPlugin. That's it!

var MiniCssExtractPlugin = require('mini-css-extract-plugin');
var FastCSSSplitWebpackPlugin = require('fast-css-split-webpack-plugin');

module.exports = {
  mode: 'development',
  entry: './index.js',
  context: __dirname,
  output: {
    path: __dirname + '/dist',
    publicPath: '/foo',
    filename: 'bundle.js',
  },
  module: {
    rules: [{
      test: /\.css$/,
      use: [MiniCssExtractPlugin.loader, {
        loader: 'css-loader',
        options: {sourceMap: true}
      }]
    }]
  },
  plugins: [
    new MiniCssExtractPlugin({filename: 'styles.css'}),
    new FastCSSSplitWebpackPlugin({size: 4000}),
  ],
};

The following configuration options are available:

size: default: 4000 The maximum number of CSS rules allowed in a single file. To make things work with IE this value should be somewhere around 4000.

imports: default: false If you originally built your app to only ever consider using one CSS file then this flag is for you. It creates an additional CSS file that imports all of the split files. You pass true to turn this feature on, or a string with the name you'd like the generated file to have.

filename: default: "[name]-[part].[ext]" Control how the split files have their names generated. The default uses the parent's filename and extension, but adds in the part number.

preserve: default: false. Keep the original unsplit file as well. Sometimes this is desirable if you want to target a specific browser (IE) with the split files and then serve the unsplit ones to everyone else.

defer: default: 'false'. You can pass true here to cause this plugin to split the CSS on the afterProcessAssets phase. Sometimes this is needed if you have other plugins that operate on the CSS also in the same phase. Unfortunately by doing this you potentially lose chunk linking and source maps. Use only when necessary.

fast-css-split-webpack-plugin's People

Contributors

bowlingx avatar didi0613 avatar izaakschroeder avatar jjt avatar lwr avatar yibn2008 avatar

Watchers

 avatar  avatar

Forkers

gizadirov

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.