
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
@zeit/next-less
Advanced tools
Import .less
files in your Next.js project
npm install --save @zeit/next-less less
or
yarn add @zeit/next-less less
The stylesheet is compiled to .next/static/css
. Next.js will automatically add the css file to the HTML.
In production a chunk hash is added so that styles are updated when a new version of the stylesheet is deployed.
Create a next.config.js
in your project
// next.config.js
const withLess = require('@zeit/next-less')
module.exports = withLess()
Create a Less file styles.less
@font-size: 50px;
.example {
font-size: @font-size;
}
Create a page file pages/index.js
import "../styles.less"
export default () => <div className="example">Hello World!</div>
// next.config.js
const withLess = require('@zeit/next-less')
module.exports = withLess({
cssModules: true
})
Create a Less file styles.less
@font-size: 50px;
.example {
font-size: @font-size;
}
Create a page file pages/index.js
import css from "../styles.less"
export default () => <div className={css.example}>Hello World!</div>
You can also pass a list of options to the css-loader
by passing an object called cssLoaderOptions
.
For instance, to enable locally scoped CSS modules, you can write:
// next.config.js
const withLess = require('@zeit/next-less')
module.exports = withLess({
cssModules: true,
cssLoaderOptions: {
importLoaders: 1,
localIdentName: "[local]___[hash:base64:5]",
}
})
Create a CSS file styles.css
.example {
font-size: 50px;
}
Create a page file pages/index.js
that imports your stylesheet and uses the hashed class name from the stylesheet
import css from "../style.css"
const Component = props => {
return (
<div className={css.backdrop}>
...
</div>
)
}
export default Component
Your exported HTML will then reflect locally scoped CSS class names.
For a list of supported options, refer to the webpack css-loader
README.
// ./pages/_document.js
import Document, { Head, Main, NextScript } from 'next/document'
export default class MyDocument extends Document {
render() {
return (
<html>
<Head>
<link rel="stylesheet" href="/_next/static/style.css" />
</Head>
<body>
<Main />
<NextScript />
</body>
</html>
)
}
}
Create a next.config.js
in your project
// next.config.js
const withLess = require('@zeit/next-less')
module.exports = withLess()
Create a postcss.config.js
module.exports = {
plugins: {
// Illustrational
'postcss-css-variables': {}
}
}
Create a CSS file styles.scss
the CSS here is using the css-variables postcss plugin.
:root {
--some-color: red;
}
.example {
/* red */
color: var(--some-color);
}
When postcss.config.js
is not found postcss-loader
will not be added and will not cause overhead.
You can also pass a list of options to the postcss-loader
by passing an object called postcssLoaderOptions
.
For example, to pass theme env variables to postcss-loader, you can write:
// next.config.js
const withLess = require('@zeit/next-less')
module.exports = withLess({
postcssLoaderOptions: {
parser: true,
config: {
ctx: {
theme: JSON.stringify(process.env.REACT_APP_THEME)
}
}
}
})
Optionally you can add your custom Next.js configuration as parameter
// next.config.js
const withLess = require('@zeit/next-less')
module.exports = withLess({
webpack(config, options) {
return config
}
})
FAQs
Import `.less` files in your Next.js project
The npm package @zeit/next-less receives a total of 5,041 weekly downloads. As such, @zeit/next-less popularity was classified as popular.
We found that @zeit/next-less demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 15 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.