* ci: test docs-publish * Specify to use prod * Babel should transpile with env set by webpack * chore: production defaults to true; set in --env.production by cli * Remove lingering merge issue * Add minimification plugins * Need relative URLs to find root assets * Default public url to forward slash in define plugin * Don't wrap w/ react-hot-loader if we're building for production * No need to log extensions * Minimize using terser; and minimize css * Import redux from es; this bypasses commonjs as import and fixes our "production build" warning * Split commone webpack build for now to test hotfix * postfix slash * undefined safe env access * Try to fix node_env prod issue w/ redux * Set NODE_ENV production for all prod builds * Syntax error * nix tests * Increase max amount of available memory * Don't run bundle analyzer by default
39 lines
921 B
HTML
39 lines
921 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
/>
|
|
<meta name="theme-color" content="#000000" />
|
|
|
|
<link rel="manifest" href="<%= PUBLIC_URL %>manifest.json" />
|
|
<script
|
|
type="text/javascript"
|
|
src="<%= PUBLIC_URL %>app-config.js"
|
|
></script>
|
|
|
|
<title>OHIF Viewer</title>
|
|
|
|
<!-- WEB FONTS -->
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Sanchez&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<!-- EXTENSIONS -->
|
|
<!-- <script type="text/javascript" src="path/to/some-extension.js"></script>
|
|
|
|
<script>
|
|
window.config.extensions = [SomeExtension];
|
|
</script> -->
|
|
</head>
|
|
|
|
<body>
|
|
<noscript> You need to enable JavaScript to run this app. </noscript>
|
|
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|