Skip to content

pynklynn/ezwc-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ezwc-loader

Webpack loader for EZWC. Requires Webpack version 4.

Usage

Install the loader:

$ npm install --save-dev ezwc-loader

Add the configuration to the webpack.config.js file:

module.exports = {
  ...
  module: {
    rules: [{
      test: /\.ezwc$/,
      use: [
        'ezwc-loader'
      ]
    }]
  }
};

(c) 2019 Pynk Lynn LLC