UNPKG
@oreodusk/oreonyx
Version:
latest (1.2.0)
1.2.0
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
UI module bundler helper
github.com/toerso/oreonnyx
toerso/oreonnyx
@oreodusk/oreonyx
/
src
/
Oreon.js
14 lines
(11 loc)
•
270 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
CsrConfig
=
require
(
'./webpack/Csr.config'
);
const
SsrConfig
=
require
(
'./webpack/Ssr.config'
);
class
Oreon
{
static
getCsrApi
(
) {
return
new
CsrConfig
(); }
static
getSsrApi
(
) {
return
new
SsrConfig
(); } }
module
.
exports
=
Oreon
;