2019-05-31 20:43:29 -04:00
|
|
|
require('core-js/stable')
|
|
|
|
require('regenerator-runtime/runtime')
|
2017-03-26 22:07:40 -04:00
|
|
|
|
2020-04-24 17:40:41 -04:00
|
|
|
/* global siteConfig */
|
|
|
|
/* eslint-disable no-unused-expressions */
|
|
|
|
|
2019-08-10 12:18:14 -04:00
|
|
|
switch (window.document.documentElement.lang) {
|
|
|
|
case 'ar':
|
|
|
|
case 'fa':
|
2020-04-24 17:40:41 -04:00
|
|
|
import(/* webpackChunkName: "fonts-arabic" */ './scss/fonts/arabic.scss')
|
2019-08-10 12:18:14 -04:00
|
|
|
break
|
|
|
|
default:
|
2020-04-24 17:40:41 -04:00
|
|
|
import(/* webpackChunkName: "fonts-default" */ './scss/fonts/default.scss')
|
2019-08-10 12:18:14 -04:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2017-09-10 01:41:22 -04:00
|
|
|
require('./scss/app.scss')
|
2020-04-24 17:40:41 -04:00
|
|
|
import(/* webpackChunkName: "theme" */ './themes/' + siteConfig.theme + '/scss/app.scss')
|
2018-08-09 00:07:15 -04:00
|
|
|
|
2020-04-24 17:40:41 -04:00
|
|
|
import(/* webpackChunkName: "mdi" */ '@mdi/font/css/materialdesignicons.css')
|
2019-07-29 04:50:03 +00:00
|
|
|
|
2018-02-24 17:35:56 -05:00
|
|
|
require('./helpers/compatibility.js')
|
2018-09-29 15:39:09 -04:00
|
|
|
require('./client-app.js')
|
2020-04-24 17:40:41 -04:00
|
|
|
import(/* webpackChunkName: "theme" */ './themes/' + siteConfig.theme + '/js/app.js')
|