1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00

パフォーマンスを改善する目的でWebフォントやめる

This commit is contained in:
Nebel 2019-12-13 15:06:03 +09:00
parent 2884a0763e
commit 4ebe571dee
2 changed files with 2 additions and 9 deletions

View file

@ -28,15 +28,8 @@ export default class extends Document {
return (
<Html lang="ja" dir="ltr">
<Head>
<meta
name="viewport"
content="width=device-width,minimum-scale=1,initial-scale=1"
/>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="theme-color" content={theme.palette.primary.main} />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap"
/>
</Head>
<body>
<Main />

View file

@ -21,7 +21,7 @@ export const theme = createMuiTheme({
}
},
typography: {
fontFamily: '"Noto Sans JP", "Helvetica", "Arial", sans-serif'
fontFamily: "sans-serif"
}
});