mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
e8c7dd4958
fixes #4390 * Installing only `babel-plugin-transform-decorators-legacy` didn't work * It also needs to install `babel-plugin-transform-class-properties`
10 lines
128 B
Plaintext
10 lines
128 B
Plaintext
{
|
|
"presets": [
|
|
"next/babel"
|
|
],
|
|
"plugins": [
|
|
"transform-decorators-legacy",
|
|
"transform-class-properties"
|
|
]
|
|
}
|