Skip to content

MetaSPA/Meta-SPA-Webpack-Plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Meta SPA Webpack Plugin (WIP)

This plugin helps webpack emit Meta SPA compatible bundle files.

Usage

  • Installation
npm install -D @metaspa/meta-spa-webpack-plugin
  • Add to your webpack config (commonjs style)
  • Be careful this plugin will modified your output target and externals config. The original webpack config about output target and externals will not affect the final build result
const MetaSPAPlugin = require('@metaspa/meta-spa-webpack-plugin').default

module.export = {
    ...
    plugins: [
        new MetaSPAPlugin({
            namespace: 'AppName',
            provide: [
                {module: 'react', symbol: 'React'}
            ]
        })
    ]
}

About

webpack plugin that helps export MetaSPA format JSONP

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published