Remove @emotion/babel-preset-css-prop and import { jsx } from @emotion/core directly instead so Rollup can preserve imports order when bundling (instead of @emotion/core automatically inserting itself as the first import).
10 lines
182 B
Plaintext
10 lines
182 B
Plaintext
{
|
|
"presets": [
|
|
["@babel/preset-env", { "loose": true }],
|
|
"@babel/preset-react"
|
|
],
|
|
"plugins": [
|
|
["@babel/plugin-proposal-class-properties", { "loose": true }]
|
|
]
|
|
}
|