1.1.3 • Published 6 years ago

initial-app-message v1.1.3

Weekly downloads
96
License
MIT
Repository
github
Last release
6 years ago

Initial Webpack message

Recommended usage with friendly-errors-webpack-plugin:

const FriendlyErrorsWebpackPlugin = require('friendly-errors-webpack-plugin');
const initialMessage = require('initial-webpack-message');


const WEBPACK_PORT = 4000;


module.exports = {
  // ... rest of Webpack config
  plugins: [
    new FriendlyErrorsWebpackPlugin({
      clearConsole: true,
      compilationSuccessInfo: {
        messages: initialMessage(WEBPACK_PORT, [
           // environment variables to be displayed
          'API_HOST',
          'GRAPHQL_HOST',
          'ANALYTICS_HOST',
        ]),
      },
    }),
  ],
  // ... rest of Webpack config
};