Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

next.js - After build NextJS project with css.modules, styles set after composes does not work

I have class CommonContainer in styles/Containers.module.css

.CommonContainer {
    max-width: 1440px;
    margin: 0 auto 72px auto;
    padding-left: 80px;
    padding-right: 80px;
}

And I compose it to another class

.topPostContainer {
    composes: CommonContainer from "../../styles/Containers.module.css";
    margin-top: 56px;
}

But after NextJS building "margin-top: 56px;" not sets into component with .topPostContainer In safari console I view

Dev mode nextJS - correct.

dev mode classes


After building.

after building p1 after building p2 after building p3

This only happens after the project has been built. What could go wrong and how to fix it? Maybe someone has encountered something like this


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...