-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Docs update * Returt app for LSB * Fix styles in Entity * Build 0.2.1-4 * Patch with HTX * Added HTTPS in dev env * Interfaces in docs * Build script for CDN * Prepare basic auth * Refactor App and Image * Return app variable in platform * Task store login -> username * New logic of description * Fixed Image bugs and Polygons * Docs with auth * Auth request * Full screen tool * Remove https from dev * Build without hash * Build 0.2.1-4 * v. 0.2.1-4
- Loading branch information
1 parent
a31f015
commit 8740635
Showing
39 changed files
with
791 additions
and
482 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"main.css": "/static/css/main.05fec320.css", | ||
"main.js": "/static/js/main.c684fef9.js", | ||
"main.js.map": "/static/js/main.c684fef9.js.map", | ||
"main.css": "/static/css/main.ca4d6399.css", | ||
"main.js": "/static/js/main.b5ddacd9.js", | ||
"main.js.map": "/static/js/main.b5ddacd9.js.map", | ||
"static/media/config.xml": "/static/media/config.1890026d.xml", | ||
"static/css/main.05fec320.css.map": "/static/css/main.05fec320.css.map", | ||
"static/css/main.ca4d6399.css.map": "/static/css/main.ca4d6399.css.map", | ||
"index.html": "/index.html", | ||
"precache-manifest.917053f230e58e2ed5b7fcfb9a932a09.js": "/precache-manifest.917053f230e58e2ed5b7fcfb9a932a09.js", | ||
"precache-manifest.bbf29cc0590c9f5ed8edf29c73dce7a4.js": "/precache-manifest.bbf29cc0590c9f5ed8edf29c73dce7a4.js", | ||
"service-worker.js": "/service-worker.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
build/static/css/main.05fec320.css → build/static/css/main.ca4d6399.css
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
build/static/js/main.c684fef9.js → build/static/js/main.b5ddacd9.js
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
const rewire = require("rewire"); | ||
const defaults = rewire("react-scripts/scripts/build.js"); | ||
let config = defaults.__get__("config"); | ||
|
||
config.optimization.splitChunks = { | ||
cacheGroups: { | ||
default: false, | ||
}, | ||
}; | ||
|
||
/** | ||
* Disable hash generation in production build for JS | ||
*/ | ||
config.output.filename = "static/js/[name].bundle.js"; | ||
|
||
/** | ||
* Disable hash generation in production build for CSS | ||
*/ | ||
config.plugins[5].options.filename = "static/css/[name].bundle.css"; | ||
|
||
/** | ||
* Disable chunks in production build | ||
*/ | ||
config.optimization.runtimeChunk = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.