You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download the example [or clone the repo](https://github.com/zeit/next.js):
7
+
8
+
```bash
9
+
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/basic-css
10
+
cd basic-css
11
+
```
12
+
13
+
Install it and run:
14
+
15
+
```bash
16
+
npm install
17
+
npm run dev
18
+
```
19
+
20
+
Deploy it to the cloud with [now](https://zeit.co/now) ([download](https://zeit.co/download))
21
+
22
+
```bash
23
+
now
24
+
```
25
+
26
+
## The idea behind the example
27
+
28
+
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).
0 commit comments