@coralogix/webpack-plugin
v0.11.0
Published
Official Coralogix Webpack plugin
Maintainers
Readme
Coralogix Webpack Plugin
A Webpack plugin that creates metadata asset for support micro frontend in Coralogix.
Installation
npm i -D @coralogix/webpack-pluginExample
// webpack.config.js
const { CoralogixWebpackPlugin } = require("@coralogix/webpack-plugin");
module.exports = {
// ... other config above ...
plugins: [
new CoralogixWebpackPlugin({
app:'test-app',
version:'1.0.0'
}),
],
};