You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
require('core-js/stable')
|
|
|
|
require('regenerator-runtime/runtime')
|
|
|
|
|
|
|
|
/* global siteConfig */
|
|
|
|
/* eslint-disable no-unused-expressions */
|
|
|
|
|
|
|
|
switch (window.document.documentElement.lang) {
|
|
|
|
case 'ar':
|
|
|
|
case 'fa':
|
|
|
|
import(/* webpackChunkName: "fonts-arabic" */ './scss/fonts/arabic.scss')
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
import(/* webpackChunkName: "fonts-default" */ './scss/fonts/default.scss')
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
require('modernizr')
|
|
|
|
|
|
|
|
require('./scss/app.scss')
|
|
|
|
import(/* webpackChunkName: "theme" */ './themes/' + siteConfig.theme + '/scss/app.scss')
|
|
|
|
|
|
|
|
import(/* webpackChunkName: "mdi" */ '@mdi/font/css/materialdesignicons.css')
|
|
|
|
|
|
|
|
require('./helpers/compatibility.js')
|
|
|
|
require('./client-app.js')
|
|
|
|
import(/* webpackChunkName: "theme" */ './themes/' + siteConfig.theme + '/js/app.js')
|