页面刷新一瞬间样式没有加载完,会跳一下
配置如下:
//.babelrc
{
"presets": [
"next/babel",
"@zeit/next-typescript/babel"
],
"plugins": [
["styled-components", { "ssr": true, "displayName": false }]
]
}
//next.config.js
const withTypescript = require('@zeit/next-typescript')
const isProd = process.env.NODE_ENV === 'production'
module.exports = withTypescript({
webpack: (config) => {
return config
}
})