Skip to content

Commit 2f5138d

Browse files
committed
chore(github): ISSUE_TEMPLATE
1 parent 28f1706 commit 2f5138d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

ISSUE_TEMPLATE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
### Expected behavior
2+
3+
### Actual behavior
4+
5+
### Setup
6+
7+
* http-proxy-middleware: _version_
8+
* server: _connect/express/browser-sync..._ + _version_
9+
* other relevant modules
10+
11+
#### proxy middleware configuration
12+
```javascript
13+
var apiProxy = proxy('/api', {target:'http://www.example.org', changeOrigin:true});
14+
```
15+
#### server mounting
16+
```javascript
17+
var app = express();
18+
19+
app.use(apiProxy);
20+
app.listen(3000);
21+
```

0 commit comments

Comments
 (0)