This website requires JavaScript.
Explore
Help
Sign In
terribleplan
/
next.js
Watch
1
Star
0
Fork
You've already forked next.js
0
mirror of
https://github.com/terribleplan/next.js.git
synced
2024-01-19 02:48:18 +00:00
Code
Issues
Releases
Wiki
Activity
14c7b25fcc
next.js
/
examples
/
with-custom-babel-config
/
.babelrc
9 lines
104 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add support for using .babelrc in the app root. (#493) * Add support for using .babelrc in the app root. * Update the README about the .babelrc usage. * Fix a typo. * Remove additional example usage.
2016-12-26 18:13:45 +00:00
{
"presets": [
Update with-custom-babel-config example (#4923) ## Issue Running [examples/with-custom-babel-config](https://github.com/zeit/next.js/tree/canary/examples/with-custom-babel-config) will result in the following error message: ``` ./pages/index.js Module build failed (from /some_path/next.js/dist/build/webpack/loaders/next-babel-loader.js): Error: [BABEL] /some_path/next.js/examples/with-custom-babel-config/pages/index.js: As of v7.0.0-beta.55, we've removed Babel's Stage presets. Please consider reading our blog post on this decision at https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets for more details. TL;DR is that it's more beneficial in the long run to explicitly add which proposals to use. ... ``` ## Explanation Babel removed Babel's Stage presets on July 27, 2018. More info: https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets ## Solution I've updated the example so ist just uses the babel plugin it actually needs. ## Related Closes: #4772
2018-08-08 16:02:46 +00:00
"next/babel"
Add support for using .babelrc in the app root. (#493) * Add support for using .babelrc in the app root. * Update the README about the .babelrc usage. * Fix a typo. * Remove additional example usage.
2016-12-26 18:13:45 +00:00
],
Update with-custom-babel-config example (#4923) ## Issue Running [examples/with-custom-babel-config](https://github.com/zeit/next.js/tree/canary/examples/with-custom-babel-config) will result in the following error message: ``` ./pages/index.js Module build failed (from /some_path/next.js/dist/build/webpack/loaders/next-babel-loader.js): Error: [BABEL] /some_path/next.js/examples/with-custom-babel-config/pages/index.js: As of v7.0.0-beta.55, we've removed Babel's Stage presets. Please consider reading our blog post on this decision at https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets for more details. TL;DR is that it's more beneficial in the long run to explicitly add which proposals to use. ... ``` ## Explanation Babel removed Babel's Stage presets on July 27, 2018. More info: https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets ## Solution I've updated the example so ist just uses the babel plugin it actually needs. ## Related Closes: #4772
2018-08-08 16:02:46 +00:00
"plugins": [
"@babel/plugin-proposal-do-expressions"
]
Add support for using .babelrc in the app root. (#493) * Add support for using .babelrc in the app root. * Update the README about the .babelrc usage. * Fix a typo. * Remove additional example usage.
2016-12-26 18:13:45 +00:00
}
Reference in a new issue
Copy permalink