Created
August 4, 2019 16:34
-
-
Save AlexanderKaluzhny/e791c6b4d809e941f5e70f9e20929e10 to your computer and use it in GitHub Desktop.
Full content of my craco.config.js file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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