Home >Web Front-end >CSS Tutorial >How Can I Fix the 'Global CSS cannot be imported from files other than your Custom ' Error in Next.js?
Next.js Global CSS Importation Dilemma
In Next.js, managing global CSS can be tricky. Recently, a user encountered a perplexing error: "Global CSS cannot be imported from files other than your Custom
Analyzing the Cause
The error typically arises when using legacy third-party packages like @zeit/next-sass for CSS loading. With the release of Next.js 9.2, global CSS imports have become mandatory within the Custom
A Step-by-Step Solution
To resolve the error and manage global CSS effectively, consider the following steps:
Example of pages/_app.js with Global CSS Import:
// pages/_app.js import '../global-styles/main.scss' export default function MyApp({ Component, pageProps }) { return <Component {...pageProps} /> }
Using CSS Modules for Scoped Styling
To apply styling specific to components or pages, Next.js offers built-in support for CSS modules. By creating a Sass file with the same name as the component (e.g., button.module.scss), you can define scoped styles that are only applied to that component.
In Conclusion
Next.js's latest approach to CSS management requires global styles to be imported within the Custom
The above is the detailed content of How Can I Fix the 'Global CSS cannot be imported from files other than your Custom ' Error in Next.js?. For more information, please follow other related articles on the PHP Chinese website!