1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Fix svg-components example and improve babel example file (#3746)

This commit is contained in:
Ángel M 2018-02-09 15:41:09 +01:00 committed by Tim Neutkens
parent b8076a84a0
commit 2ba6a9aff7
2 changed files with 3 additions and 2 deletions

View file

@ -8,7 +8,7 @@
},
"dependencies": {
"next": "latest",
"react": "latest,
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {

View file

@ -1094,7 +1094,8 @@ Here's an example `.babelrc` file:
```json
{
"presets": ["next/babel", "env"]
"presets": ["next/babel"],
"plugins": []
}
```