2020-06-08 09:00:58 +00:00
|
|
|
const merge = require("webpack-merge");
|
|
|
|
|
const common = require("./craco.common.config.js");
|
|
|
|
|
module.exports = merge(common, {
|
2021-09-09 15:10:22 +00:00
|
|
|
babel: {
|
|
|
|
|
plugins: ["babel-plugin-styled-components"],
|
|
|
|
|
},
|
2020-06-08 09:00:58 +00:00
|
|
|
});
|