We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f7eaf8 commit 057c222Copy full SHA for 057c222
frontend/pages/_app.js
@@ -1,17 +1,14 @@
1
import '../components/page.css';
2
import '../components/Cells/Image/ImageCanvas.css';
3
import '../components/SettingsBar/HelpText.css';
4
-import config from '../config';
5
import Head from 'next/head';
6
-import Script from 'next/script';
7
8
const MyApp = ({ Component, pageProps }) => {
9
return (
10
<>
11
<Head>
12
<link rel="icon" type="image/png" href="/favicon.png" />
13
<title>Kangas - Data and Model Analysis</title>
14
- { config?.scripts?.map(url => <Script src={url}/>) }
15
</Head>
16
<Component {...pageProps} />
17
</>
0 commit comments