Fix Webpack only listening on IPv6 instead of all interfaces + update VS Code default styles

pull/374/head
Kelvin Schoofs 2 years ago
parent 4046414b1b
commit 574d466e98

@ -51,6 +51,7 @@
- All actions are upgraded to a more recent version - All actions are upgraded to a more recent version
- Caching of Yarn dependencies is now handled by `actions/setup-node` - Caching of Yarn dependencies is now handled by `actions/setup-node`
- Migrated from `actions/create-release` and `actions/upload-release-asset` to `softprops/action-gh-release` - Migrated from `actions/create-release` and `actions/upload-release-asset` to `softprops/action-gh-release`
- Fix Webpack only listening on IPv6 instead of all interfaces + update VS Code default styles
## v1.25.0 (2022-06-01) ## v1.25.0 (2022-06-01)

File diff suppressed because it is too large Load Diff

@ -161,7 +161,7 @@ module.exports = (env, options) => {
devServer: { devServer: {
hot: 'only', hot: 'only',
open: false, open: false,
host: 'localhost', host: '0.0.0.0',
port: 3000, port: 3000,
allowedHosts: 'all', allowedHosts: 'all',
headers: { headers: {

Loading…
Cancel
Save