Skip to content

Instantly share code, notes, and snippets.

@AlexanderKaluzhny
Created August 4, 2019 16:34
Show Gist options
  • Save AlexanderKaluzhny/e791c6b4d809e941f5e70f9e20929e10 to your computer and use it in GitHub Desktop.
Save AlexanderKaluzhny/e791c6b4d809e941f5e70f9e20929e10 to your computer and use it in GitHub Desktop.
Full content of my craco.config.js file
const path = require('path');
const fs = require('fs');
const appDirectory = fs.realpathSync(process.cwd());
const resolveApp = relativePath => path.resolve(appDirectory, relativePath);
const appDevBuild = resolveApp('devBuild');
const WriteFilePlugin = require('write-file-webpack-plugin');
module.exports = function({ env }) {
return {
webpack: {
alias: {},
plugins: [],
configure: (webpackConfig, { env, paths }) => {
return webpackConfig;
}
},
plugins: [
{
plugin: {
overrideWebpackConfig: ({
webpackConfig,
cracoConfig,
pluginOptions,
context: { env, paths }
}) => {
console.log('ENV', env);
if (env === 'development') {
webpackConfig.output.path = appDevBuild;
webpackConfig.output.futureEmitAssets = false;
webpackConfig.plugins.unshift(new WriteFilePlugin());
console.log('overrideWebpackConfig: ', webpackConfig);
}
return webpackConfig;
}
},
options: {}
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment