vue-loader-plugin

1.3.0 • Public • Published

vue loader plugin

Explaination

this is a rewrite of VueLoaderPlugin to solve the compatibility with webpack5

webpack5 has rewrited the ruleset module, which means the VueLoaderPlugin cannot use class Ruleset any more, instead, it should using the RuleSetCompiler

Installation

npm i --save-dev vue-loader-plugin
yarn add --dev vue-loader-plugin

usage

  • before

    // webpack.config.js
    const VueLoaderPlugin = require('vue-loader/lib/plugin')
     
    module.exports = {
        // ...
        plugins: [
            new VueLoaderPlugin()
        ]
    }
  • now

    // webpack.config.js
    const VueLoaderPlugin = require('vue-loader-plugin');
    module.exports = {
        // ...
        plugins: [
            new VueLoaderPlugin()
        ]
    }

Package Sidebar

Install

npm i vue-loader-plugin

Weekly Downloads

1,780

Version

1.3.0

License

ISC

Unpacked Size

7.25 kB

Total Files

3

Last publish

Collaborators

  • ivan_liuqi