“next/font”需要 SWC,尽管由于存在自定义 babel 配置而正在使用 Babel

问题描述 投票:0回答:2

当我尝试使用样式组件运行 Nextjs 项目时,我遇到了此错误。

这是我的.babelrc

{
  "plugins": [
    [
      "babel-plugin-styled-components",
      {
        "ssr": true,
        "displayName": true
      }
    ]
  ],
  "presets": ["next/babel", "@babel/preset-typescript"]
}

这是我的 next.config.js:

/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  styledComponents:
    Boolean |
    {
      displayName: Boolean | undefined,
      ssr: Boolean | undefined
    }
}
module.exports = nextConfig

那么这是我的错误: 语法错误:“next/font”需要 SWC,尽管由于存在自定义 babel 配置而正在使用 Babel。 了解更多:https://nextjs.org/docs/messages/babel-font-loader-conflict

我尝试在 next.config.js 中使用自定义 babel 配置,但没有按预期工作。

而且,这是我的_文档:

import Document, {
  Html,
  Head,
  Main,
  NextScript,
  DocumentContext
} from 'next/document'
import { ServerStyleSheet } from 'styled-components'

export default class MyDocument extends Document {
  static async getInitialProps(ctx: DocumentContext) {
    const sheet = new ServerStyleSheet()
    const originalRenderPage = ctx.renderPage

    try {
      ctx.renderPage = () =>
        originalRenderPage({
          enhanceApp: (App) => (props) =>
            sheet.collectStyles(<App {...props} />)
        })

      const initialProps = await Document.getInitialProps(ctx)
      return {
        ...initialProps,
        styles: (
          <>
            {initialProps.styles}
            {sheet.getStyleElement()}
          </>
        )
      }
    } finally {
      sheet.seal()
    }
  }

  render() {
    return (
      <Html lang="pt-BR">
        <Head />
        <body>
          <Main />
          <NextScript />
        </body>
      </Html>
    )
  }
}
reactjs next.js babeljs styled-components swc
2个回答
0
投票

当我们将

next/font
与自定义 Babel 配置一起使用时,会发生“Babel 和 next/font 冲突”错误。当我们有自定义圣经配置时,我们选择退出 Next.js 编译器,这是使用
next/font

时所必需的

因此,要解决此错误,我们可以删除 Babel 配置,例如

.babelrc

此页面是有关错误的更多详细信息的一个很好的参考:https://nextjs.org/docs/messages/babel-font-loader-conflict


-3
投票

在.babelrc文件中删除这段代码
"presets": ["next/babel", "@babel/preset-typescript"] 它将正常工作

© www.soinside.com 2019 - 2024. All rights reserved.