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