mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-19 05:41:30 +00:00
10 lines
175 B
JavaScript
10 lines
175 B
JavaScript
module.exports = {
|
|
presets: [
|
|
'@babel/preset-env',
|
|
['@babel/preset-react', {
|
|
runtime: 'automatic'
|
|
}]
|
|
],
|
|
plugins: ['babel-plugin-styled-components']
|
|
};
|