Skip to content

Commit cd5a81f

Browse files
committed
Fix the suggested hostname for dev setups
1 parent f088c4f commit cd5a81f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ To get started:
2323
* `npm install`
2424
* For pure UI development
2525
* Run `npm start` to start the UI along with a backing [httptoolkit server](https://github.com/httptoolkit/httptoolkit-server).
26-
* Open [`local.httptoolkit.tech:8080`](http://local.httptoolkit.tech:8080) to view the UI
26+
* Open [`localhost:8080`](http://localhost:8080) to view the UI
2727
* To develop the UI & server together
2828
* Start [a server](https://github.com/httptoolkit/httptoolkit-server) locally
2929
* Run `npm run start:web` to start the UI without running a separate HTTP Toolkit server
30-
* Open [`local.httptoolkit.tech:8080`](http://local.httptoolkit.tech:8080) to view the UI
30+
* Open [`localhost:8080`](http://localhost:8080) to view the UI
3131
* `npm test` - run the tests (not many yet, but more are very welcome!)

automation/webpack.dev.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default merge(common, {
1212
devtool: 'eval-cheap-module-source-map' as any,
1313

1414
devServer: {
15-
host: '127.0.0.1',
15+
host: 'localhost',
1616
historyApiFallback: true,
1717
client: {
1818
overlay: {

0 commit comments

Comments
 (0)