如何在 Next.js 服务器组件中使用 scss 模块

发布于 2025-01-10 05:25:31 字数 390 浏览 1 评论 0原文

我正在尝试在我的 Next.js 应用程序中实现服务器组件。我正在使用 scss 模块进行样式设置。

我的项目中的典型组件如下所示:

//MyComponent.client.jsx

import s from './MyComponent.module.scss';

export const MyComponent = ({ props }) => {
return <div id={ s.wrapper }>{ props.stuff }</div>
};

当我将其更改为: MyComponent.server.jsx

样式停止工作,并且我没有收到任何错误。

如何在服务器组件中维护此功能?

I am trying to implement server components in my Next.js app. I'm using scss modules for styling.

A typical component in my project looks like this:

//MyComponent.client.jsx

import s from './MyComponent.module.scss';

export const MyComponent = ({ props }) => {
return <div id={ s.wrapper }>{ props.stuff }</div>
};

When I change this to: MyComponent.server.jsx

Styling ceases to work, and I don't get any errors.

How can I maintain this functionality in a server component?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文