mirror of
https://github.com/kou029w/_.git
synced 2025-02-07 09:38:46 +00:00
パフォーマンスを改善する目的でWebフォントやめる
This commit is contained in:
parent
2884a0763e
commit
4ebe571dee
2 changed files with 2 additions and 9 deletions
|
@ -28,15 +28,8 @@ export default class extends Document {
|
||||||
return (
|
return (
|
||||||
<Html lang="ja" dir="ltr">
|
<Html lang="ja" dir="ltr">
|
||||||
<Head>
|
<Head>
|
||||||
<meta
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
name="viewport"
|
|
||||||
content="width=device-width,minimum-scale=1,initial-scale=1"
|
|
||||||
/>
|
|
||||||
<meta name="theme-color" content={theme.palette.primary.main} />
|
<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>
|
</Head>
|
||||||
<body>
|
<body>
|
||||||
<Main />
|
<Main />
|
||||||
|
|
|
@ -21,7 +21,7 @@ export const theme = createMuiTheme({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
typography: {
|
typography: {
|
||||||
fontFamily: '"Noto Sans JP", "Helvetica", "Arial", sans-serif'
|
fontFamily: "sans-serif"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue