mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
2ab1ae7f61
* Updated examples for build-time env configuration for v8 * Add comment to build time config example with how to include entire .env
19 lines
328 B
JSON
19 lines
328 B
JSON
{
|
|
"name": "with-universal-configuration",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"next": "latest",
|
|
"react": "^16.7.0",
|
|
"react-dom": "^16.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"dotenv": "^6.2.0"
|
|
},
|
|
"license": "ISC"
|
|
}
|