![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@innocuous/next-css
Advanced tools
Import .css
files in your Next.js project
yarn add @innocuous/next-css
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 the root of your project (next to pages/ and package.json)
// next.config.js
const withCSS = require('@zeit/next-css');
module.exports = withCSS({
/* config options here */
});
Create a CSS file style.css
.example {
font-size: 50px;
}
Create a page file pages/index.js
import '../style.css';
export default () => <div className="example">Hello World!</div>;
Note: CSS files can not be imported into your _document.js
. You can use the _app.js
instead or any other page.
// next.config.js
const withCSS = require('@innocuous/next-css');
module.exports = withCSS({
cssModules: true,
});
Create a CSS file style.css
.example {
font-size: 50px;
}
Create a page file pages/index.js
import css from '../style.css';
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 withCSS = require('@zeit/next-css');
module.exports = withCSS({
cssModules: true,
cssLoaderOptions: {
modules: {
localIdentName: process.env.NODE_ENV === 'production
? '[hash:base64]'
: '[name]_[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.example}>...</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.
Create a next.config.js
in your project
// next.config.js
const withCSS = require('@zeit/next-css');
module.exports = withCSS({
/* config options here */
});
Create a postcss.config.js
module.exports = {
plugins: {
// Illustrational
'postcss-css-variables': {},
},
};
Create a CSS file style.css
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 withCSS = require('@zeit/next-css');
module.exports = withCSS({
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 withCSS = require('@zeit/next-css');
module.exports = withCSS({
webpack(config, options) {
return config;
},
});
FAQs
Import `.css` files in your Next.js project
The npm package @innocuous/next-css receives a total of 1 weekly downloads. As such, @innocuous/next-css popularity was classified as not popular.
We found that @innocuous/next-css demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.