Files
redux-scraper/config/webpack/production.js
2023-04-04 21:47:52 +09:00

11 lines
408 B
JavaScript

// The source code including full typescript support is available at:
// https://github.com/shakacode/react_on_rails_demo_ssr_hmr/blob/master/config/webpack/production.js
const webpackConfig = require('./webpackConfig');
const productionEnvOnly = (_clientWebpackConfig, _serverWebpackConfig) => {
// place any code here that is for production only
};
module.exports = webpackConfig(productionEnvOnly);