regular-loader

1.0.0 • Public • Published

regular-loader

build status npm package npm package next license

Installation

# for webpack 2/3/4 
npm i regular-loader@next -D
# for webpack 1 
npm i regular-loader@^0.1.5 -D

Example

For webpack 2/3

webpack.config.js

const ExtractTextPlugin = require( 'extract-text-webpack-plugin' );
 
module.exports = {
    // ...
    module: {
      rules: [{
        test: /\.rgl$/,
        use: {
          loader: 'regular-loader',
          options: {
            extractCSS: true
          }
        },
      }]
    },
    plugins: [
      new ExtractTextPlugin( 'app.css' )
    ]
};

For webpack 4

webpack.config.js

const MiniCssExtractPlugin = require( 'mini-css-extract-plugin' );
 
module.exports = {
    // ...
    module: {
      rules: [{
        test: /\.rgl$/,
        use: {
          loader: 'regular-loader',
          options: {
            extractCSS: true
          }
        },
      }]
    },
    plugins: [
      new MiniCssExtractPlugin( {
          filename: 'app.css',
      } )
    ]
};

Related

Thanks

Package Sidebar

Install

npm i regular-loader

Weekly Downloads

3

Version

1.0.0

License

MIT

Unpacked Size

52.4 kB

Total Files

36

Last publish

Collaborators

  • fengzilong
  • leeluolee
  • rainfore