forked from geostreams/ilnlrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.jsx
25 lines (18 loc) · 754 Bytes
/
home.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import "@babel/polyfill";
import 'isomorphic-fetch';
import React from 'react';
import {render} from 'react-dom';
import LandingApp from './app/components/LandgingApp';
import './app/styles/main.css';
import './app/styles_custom/react-mdc-web.css'
// ref: http://stackoverflow.com/questions/33915826/exclude-module-from-webpack-minification
// https://opensource.ncsa.illinois.edu/bitbucket/projects/GEOD/repos/geodashboard-v3/pull-requests/33/overview
// set sendfile in nginx.conf as off to forbid browser cache config.js
const config = require('./homeconfig.js')
// import {gd3} from './config.js';
window.configruntime = config
console.log("Running App version " + VERSION)
render(
<LandingApp />,
document.getElementById('root')
)