vue3-client-plugin
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

vue3-client-plugin

When rendering a bundle that leverages webpack's on-demand code splitting features, we can ensure the optimal chunks are preloaded / prefetched, and also intelligently inject tags for needed async chunks to avoid waterfall requests on the client, thus improving TTI (time-to-interactive)

Installation

npm i --save-dev vue3-client-plugin

Features

  • webpack 5
  • vue3
  • source-map

Usage

const merge = require('webpack-merge')
const nodeExternals = require('webpack-node-externals')
const baseConfig = require('./webpack.base.config.js')
const Vue3SSRClientPlugin = require('vue3-client-plugin')

module.exports = merge(baseConfig, {
    entry: '/path/to/entry-client.js',
    plugins: [
        new webpack.optimize.CommonsChunkPlugin({
            name: "manifest",
            minChunks: Infinity
        }),
        new Vue3SSRClientPlugin()
    ]
})

Package Sidebar

Install

npm i vue3-client-plugin

Weekly Downloads

2

Version

1.0.1

License

ISC

Unpacked Size

10.1 kB

Total Files

7

Last publish

Collaborators

  • webigorkiev