2022-06-21 13:57:34 +00:00
|
|
|
const { merge } = require("webpack-merge");
|
2020-06-08 09:00:58 +00:00
|
|
|
const common = require("./craco.common.config.js");
|
|
|
|
|
module.exports = merge(common, {
|
2021-09-09 15:10:22 +00:00
|
|
|
babel: {
|
2022-10-17 15:16:38 +00:00
|
|
|
// plugins: ["babel-plugin-styled-components"],
|
2021-09-09 15:10:22 +00:00
|
|
|
},
|
2022-04-18 08:21:36 +00:00
|
|
|
optimization: {
|
|
|
|
|
minimize: false,
|
|
|
|
|
},
|
2020-06-08 09:00:58 +00:00
|
|
|
});
|