-
Notifications
You must be signed in to change notification settings - Fork 27.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Informative Error for Invalid Global CSS (#8958)
* Informative Error for Invalid Global CSS This adds a helpful error message with a (basic) err.sh link for invalid Global CSS usage. We'll want to expand on this topic more and offer alternatives when CSS Modules support lands. * Update expected error message
- Loading branch information
Showing
4 changed files
with
146 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Global CSS Must Be in Your Custom <App> | ||
|
||
#### Why This Error Occurred | ||
|
||
An attempt to import Global CSS from a file other than `pages/_app.js` was made. | ||
|
||
Global CSS cannot be used in files other than your Custom `<App>` due to its side-effects and ordering problems. | ||
|
||
#### Possible Ways to Fix It | ||
|
||
Relocate all Global CSS imports to your `pages/_app.js` file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import loaderUtils from 'loader-utils' | ||
import { loader } from 'webpack' | ||
|
||
const ErrorLoader: loader.Loader = function() { | ||
const options = loaderUtils.getOptions(this) || {} | ||
|
||
const { reason = 'An unknown error has occurred' } = options | ||
|
||
const err = new Error(reason) | ||
this.emitError(err) | ||
} | ||
|
||
export default ErrorLoader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters