mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-29 04:54:02 +03:00
Fix BrowserSync config on non-Docker setup (#3461)
This commit is contained in:
parent
05d383fbda
commit
79bd3e7f14
|
@ -140,22 +140,22 @@ function initBrowserSync() {
|
||||||
`${paths.templates}/*.html`
|
`${paths.templates}/*.html`
|
||||||
], {
|
], {
|
||||||
// https://www.browsersync.io/docs/options/#option-proxy
|
// https://www.browsersync.io/docs/options/#option-proxy
|
||||||
{%- if cookiecutter.use_docker == 'n' %}
|
|
||||||
proxy: 'localhost:8000'
|
|
||||||
{%- else %}
|
|
||||||
proxy: {
|
proxy: {
|
||||||
|
{%- if cookiecutter.use_docker == 'n' %}
|
||||||
|
proxy: '127.0.0.1:8000',
|
||||||
|
{%- else %}
|
||||||
|
// https://www.browsersync.io/docs/options/#option-open
|
||||||
|
// Disable as it doesn't work from inside a container
|
||||||
|
open: false,
|
||||||
target: 'django:8000',
|
target: 'django:8000',
|
||||||
|
{%- endif %}
|
||||||
proxyReq: [
|
proxyReq: [
|
||||||
function(proxyReq, req) {
|
function(proxyReq, req) {
|
||||||
// Assign proxy "host" header same as current request at Browsersync server
|
// Assign proxy "host" header same as current request at Browsersync server
|
||||||
proxyReq.setHeader('Host', req.headers.host)
|
proxyReq.setHeader('Host', req.headers.host)
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
}
|
||||||
// https://www.browsersync.io/docs/options/#option-open
|
|
||||||
// Disable as it doesn't work from inside a container
|
|
||||||
open: false
|
|
||||||
{%- endif %}
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user