From 2ba01c06a9d5695c580b6bd78c119a161448197a Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 23 Jan 2023 16:51:50 -0600 Subject: [PATCH] Move polyfills import to the top --- app/soapbox/main.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/soapbox/main.tsx b/app/soapbox/main.tsx index cb1045e0b..f5cf9f0f5 100644 --- a/app/soapbox/main.tsx +++ b/app/soapbox/main.tsx @@ -1,3 +1,5 @@ +import './polyfills'; + import * as OfflinePluginRuntime from '@lcdp/offline-plugin/runtime'; import React from 'react'; import { createRoot } from 'react-dom/client'; @@ -20,7 +22,6 @@ import '../soapbox/iframe'; import '../styles/application.scss'; import '../styles/tailwind.css'; -import './polyfills'; import './precheck'; import { default as Soapbox } from './containers/soapbox'; import * as monitoring from './monitoring';