Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmg1989/nextjs-redux-immutable-starter
nextjs-redux-immutable-starter
https://github.com/pmg1989/nextjs-redux-immutable-starter
Last synced: about 22 hours ago
JSON representation
nextjs-redux-immutable-starter
- Host: GitHub
- URL: https://github.com/pmg1989/nextjs-redux-immutable-starter
- Owner: pmg1989
- License: mit
- Created: 2018-03-13T03:17:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-03-13T07:44:22.000Z (over 6 years ago)
- Last Synced: 2024-05-21T07:41:57.883Z (6 months ago)
- Language: JavaScript
- Size: 291 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Deploy to now](https://deploy.now.sh/static/button.svg)](https://deploy.now.sh/?repo=https://github.com/zeit/next.js/tree/master/examples/with-universal-configuration)
# With universal configuration
## How to use
### Using `create-next-app`
Download [`create-next-app`](https://github.com/segmentio/create-next-app) to bootstrap the example:
```
npm i -g create-next-app
create-next-app --example with-universal-configuration with-universal-configuration-app
```### Download manually
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-universal-configuration
cd with-universal-configuration
```Install it and run:
```bash
npm install
npm run dev
```Deploy it to the cloud with [now](https://zeit.co/now) ([download](https://zeit.co/download))
```bash
now
```## The idea behind the example
This example show how to set custom environment variables for your application based on NODE_ENV using [transform-define](https://github.com/FormidableLabs/babel-plugin-transform-define).
## Caveats
- Because a babel plugin is used the output is cached in `node_modules/.cache` by `babel-loader`. When modifying the configuration you will have to manually clear this cache to make changes visible. Alternately, you may skip caching for `babel-loader` as shown [here](https://github.com/zeit/next.js/issues/1103#issuecomment-279529809).
- This example sets the environment configuration at build time, meaning the same build might not be used in e.g. both staging and production. For a solution which sets the environment at runtime, see [here](https://github.com/zeit/next.js/issues/1488#issuecomment-289108931).