Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
tab_width = 2
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Install and offline capability ([#905](https://github.com/terrestris/react-geo-baseclient/pull/905))
- Configurable backend and client paths ([#861](https://github.com/terrestris/react-geo-baseclient/pull/861))
- Don't apply global text color for column sorter icons ([#855](https://github.com/terrestris/react-geo-baseclient/pull/855))
- Explicitly filter for ENABLE_LOADING and DISABLE_LOADING ([#854](https://github.com/terrestris/react-geo-baseclient/pull/854))
Expand Down
1 change: 1 addition & 0 deletions config/webpack.common.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ const commonWebpackConfig = {
'./public/index.css',
'./public/manifest.json',
'./public/something-went-wrong.png',
'./public/logo.svg',
{
from: RESOURCES_PATH + 'appContext.json',
to: './resources/'
Expand Down
1 change: 1 addition & 0 deletions config/webpack.static.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ const delayedConf = new Promise(function(resolve) {
historyApiFallback: true,
host: '0.0.0.0',
port: 9090,
hot: false,
proxy: [].concat(customAppConfig && customAppConfig.proxy ? customAppConfig.proxy : [{}])
};
resolve(commonWebpackConfig);
Expand Down
Loading