-
Notifications
You must be signed in to change notification settings - Fork 28.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Preferred method of using normalize.css? #364
Comments
You can use |
@nkzawa I’ve used |
You'd like to define <Head>
<style>{`
body {
margin: 0;
}
`}</style>
</Head> You'd have to convert You'd be able to use |
Thanks. This is what I figured, but didn’t know if there was a more automatic way of loading it currently. I guess I could run Webpack or Gulp locally to convert before next hits it.
And that’s good to know that next utilizes common chunking. I feel better about shoving stuff into the Head now. Thanks for answering my questions!
… On Dec 9, 2016, at 01:11, Naoyuki Kanezawa ***@***.***> wrote:
You'd like to define style as text in next/head like:
<Head>
<style>{`
body {
margin: 0;
}
`}</style>
</Head>
You'd have to convert normalize.css to .json or a component to require, but this would be the best way for now IMO. If you require the file on all pages, then it bundles as a chunk and is loaded only once so it wouldn't bloat payload.
You'd be able to use css-loader too when #222 was released.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Would like to point out that glamor actually uses Made a pull request Simply importing Feel free to use my fork if you need 5.0 or wait for the pull request to be merged :) |
@FrancosLab Thanks for the tip! I ran across |
So what is the best way to do this right now for Because The way to get around this is to basically copy the entire I tried using Now that Next.js doesn't rely on Glamor, any tips on moving forward with this? EDIT: Related: vercel/styled-jsx#83, vercel/styled-jsx#100, #544 |
The |
#1327 still doesn't work for something as simple as |
@migueloller maybe could switch to universal Webpack after v2.0...: #1245 |
@sedubois, eagerly waiting for that! 😄 |
you can add your vote there 😉 |
Guys, I've been importing Now if you rather import the original, I bet you could setup an alias to |
@orlin, you can't simply import it with JS because it will throw an error in the server since it doesn't go through Webpack. |
@migueloller, it should work fine, the same way |
I've cloned the example, added I had to make a custom configuration for it though, where the output name of the emitted file was This works as a short-term fix but it would definitely be nice to have something that works out of the box as is being discussed in #1245 and vercel/styled-jsx#100 (comment) @rauchg, do you think it would be a good idea to make an example for packages that exist in |
@migueloller adding it to the same example would probably be preferable |
@migueloller I found a super-clean "best-practices" way to do this. Will do a PR on |
Global styles, including resets or normalize, are an anti-pattern anyway. Components should control their own styles. Normalize is the jQuery of CSS. |
@jaydenseric you're correct that Normalize.css is the jQuery of CSS. Browsers are still pretty inconsistent in their default styling of HTML elements, Normalize.css helps deal with that problem. Normalize.css is a necessity for legacy browser support for modern projects. |
Here is the approach I use : (https://github.com/zeit/next.js/#custom-document) // ./pages/_document.js
import Document, { Head, Main, NextScript } from 'next/document'
import flush from 'styled-jsx/server'
export default class MyDocument extends Document {
static getInitialProps({ renderPage }) {
const { html, head, errorHtml, chunks } = renderPage()
const styles = flush()
return { html, head, errorHtml, chunks, styles }
}
render() {
return (
<html>
<Head>
<title>My page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css" />
</Head>
<body className="custom_class">
{this.props.customValue}
<Main />
<NextScript />
</body>
</html>
)
}
} |
@vinzcelavi Why do you flush the styles? |
@sospedra I have no idea 😬 Maybe it could help : https://github.com/zeit/styled-jsx#styled-jsxserver |
You probably don't want to do that but instead call |
Why isn't it just fine placing a |
@janoist1 I think the problem here is that we’d like to serve normalize ourselves from next, rather then relying on an external CDN. It’s fine in development, but I don’t want to rely on anything external in production. |
Here are two ways of solving this if using We first include a import React from 'react'
import Document, { Head, Main, NextScript } from 'next/document'
const globalStyles = `
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
`
export default class MyDocument extends Document {
render () {
return (
<html>
<Head>
<meta name='viewport' content='width=device-width, initial-scale=1' />
<meta charSet='utf-8' />
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css' />
<style type='text/css'>{globalStyles}</style>
</Head>
<body>
<Main />
<NextScript />
</body>
</html>
)
}
} |
* On hover prefetch * Fix onHover prefetch * Upgrade Next.js to latest canary
What is the ideal way to load normalize.css (ideally from NPM) in a performant way? I’d like to avoid loading it as a static asset and introduce a header request just for a tiny bit of CSS.
Glamor has a
glamor/reset
extra, but it’s a lot simpler than normalize, and not what I’m looking for (I’m not really sure how to load extras into Glamor from next anyway).The text was updated successfully, but these errors were encountered: