UNPKG

@oreodusk/oreonyx

Version:

Module bundler and code compilation helper. Provide webpack configurations for SSR and CSR applications.

14 lines (11 loc) 270 B
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;