How to use the react-scripts/config/webpack.config.prod function in react-scripts

To help you get started, we’ve selected a few react-scripts examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github centreon / centreon / www / front_src / webpack.config.js View on Github external
process.env.NODE_ENV = "production";
var reactScriptsConfig = require("react-scripts/config/webpack.config.prod");
module.exports = Object.assign({}, reactScriptsConfig, {
  entry: ["@babel/polyfill", __dirname + "/src/index.js"],
  output: Object.assign({}, reactScriptsConfig.output, {
    path: __dirname + "/../"
  })
});
github CakeDC / mixer / webpack.config.prod.js View on Github external
process.env.NODE_ENV = 'production';

let reactScriptsConfig = require('react-scripts/config/webpack.config.prod');
let path = require('path');
let fs = require('fs');

let appDirectory = fs.realpathSync(process.cwd());
function resolveApp(relativePath) {
    return path.resolve(appDirectory, relativePath);
}

let ExtractTextPlugin = require('extract-text-webpack-plugin');

const cssFilename = 'css/[name].css';

module.exports = Object.assign({}, reactScriptsConfig, {
    devtool: false,
    plugins: reactScriptsConfig.plugins
        .map(function (plugin, index) {
            if (index === 4) {
                return new ExtractTextPlugin(cssFilename);
            }

            return plugin;
        })
        .filter((plugin, index) => [0, 1, 5, 6].indexOf(index) === -1),
    entry: reactScriptsConfig.entry
        .map(entry => entry.includes('src' + path.sep + 'index.js') ? resolveApp('src' + path.sep + 'React' + path.sep + 'index.js') : entry),
    output: Object.assign({}, reactScriptsConfig.output, {
        path: resolveApp('webroot'),
        filename: 'js/[name].js',
        chunkFilename: 'js/[name].chunk.js',