craco.config.js 154 B

123456789
  1. module.exports = {
  2. webpack: {
  3. configure: (config) => {
  4. config.output.publicPath = ''
  5. return config
  6. }
  7. }
  8. }