-
Hello,
I was able to configure postcss and scss to work together in my sveltekit project.
```
preprocess: {
postcss: true,
scss: {
....
},
},
```
…
-
为何项目没有 `.postcssrc.js` 文件
```js
module.exports = {
"plugins": {
"postcss-import": {},
"postcss-url": {},
"postcss-aspect-ratio-mini": {},
"postcss-write-svg": {
…
-
I want to use css preprocessor, therefore I have to use custom minifier function, where the last call would be to `minify.minifyHTMLLiterals`.
How about making a special function, that accepts `nex…
-
Good morning,
Let's say I'm looking to transpile this valid CSS4 code:
```
.justify {
hyphens: auto;
@media (width > 35.01em) {
text-align: justify;
}
}
```
`postcss-csso` won'…
-
Hi there,
Using the gatsby starter with the following dependencies:
"dependencies": {
"gatsby": "^3.4.1",
"gatsby-plugin-image": "^1.6.0",
"gatsby-plugin-postcss": "^4.6.0",
…
-
Hi,
There are 2 majors issues on windows 10 that prevents this repo from running, I'm hoping somebody has a solution:
- It's not building, there's a dependency error (`Module not found: Error: C…
-
## CVE-2021-23368 - Medium Severity Vulnerability
Vulnerable Library - postcss-7.0.32.tgz
Tool for transforming styles with JS plugins
Library home page: https://registry.npmjs.org/postcss/-/postcss…
-
when i realized that the newer media query syntax that uses the comparison operator like `@media (width < 500px)` isn't recognized on an older iphone, i decided to look into using `autoprefixer` so as…
-
Steps:
1. Create an example app with `meteor create --vue nfc-vue3 `
2. Run with `meteor --production` or build with `meteor build --architecture=os.linux.x86_64 --server-only ./bundle`
3. Error:…
-
```js
const postcss = require("postcss");
const postcssCustomProperties = require("postcss-custom-properties");
const testStr = `
:root {
---first-color: 255, 255, 0;
--second-color: rgba(…