-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 733 Bytes
/
index.html
File metadata and controls
26 lines (25 loc) · 733 Bytes
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
26
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Flux React Require.js Layers</title>
<link rel="stylesheet" href="https://brick.a.ssl.fastly.net/Lato:300,700">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div id="wrapper"></div>
<script src="build/require.js"></script>
<script>
require.config({
'baseUrl' : 'build/',
'paths' : {
'react' : 'react-with-addons',
'application': 'optimize/application',
'components/plugins/testplugin1': 'optimize/testplugin1',
'components/plugins/testplugin2': 'optimize/testplugin2'
},
});
require(["application"]);
</script>
</body>
</html>