Gatsby - Warn Attempted import error: 'css' does not contain a default export (imported as 'styles')

Gatsby - Warn Attempted import error: 'css' does not contain a default export (imported as 'styles')

我从 Gatsby 开始,在我的应用程序中,当我 运行 命令 'gatsby develop',我在终端收到这个警告:

warn Attempted import error: '../styles/home.module.css' does not contain a default export (imported as 'styles').

然后,当我尝试加载页面时,这是不可能的

Unhandled Runtime Error 
Cannot read property 'header' of undefined 
<section className={styles.header}>

这是我的部分代码(文件 index.js):

import styles from '../styles/home.module.css'

export default function Home({ data }) {
  return (
  <Layout>
     <section className={styles.header}>

这是我的 css 模块(文件 home.module.css)的一部分:

.header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  align-items: center;
}

我的 CSS 模块有什么问题?

在新版本的 Gatsby(v3 以上)中,CSS 个模块需要作为 ES 模块导入:

import * as styles from './[componentName].module.css'

应用于您的代码:

import * as styles from '../styles/home.module.css'

请记住,这不是导入 CSS 模块的推荐方式,因为您不允许 webpack 对您的样式进行 treeshake。理想情况下,您应该导入所需的命名模块,例如:

import React from "react"
import { box } from './mystyles.module.css'

const Box = ({ children }) => (
  <div className={box}>{children}</div>
)

更多详情:https://www.gatsbyjs.com/docs/reference/release-notes/migrating-from-v2-to-v3/#css-modules-are-imported-as-es-modules