ssr 使用的styled-components刷新页面一瞬间样式未加载完

页面刷新一瞬间样式没有加载完,会跳一下

配置如下:

//.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
  }
})
阅读 3.3k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进