app/index.entry.js (11 lines of code) (raw):
import 'reset-css';
import './exterrnal-libs/layout/index.css'
import fallbackStylesheetUrl from '!!file-loader!./exterrnal-libs/layout/layout-without-css-vars.css';
import { supportsCssVars, createLink } from './exterrnal-libs/layout/utils';
import './index.entry.pcss';
import './exterrnal-libs/breakpoints/index.css';
if (!supportsCssVars()) {
createLink(fallbackStylesheetUrl);
}
document.addEventListener('DOMContentLoaded', () => {
});