mirror of
https://github.com/Noratrieb/blog.git
synced 2026-01-16 05:15:01 +01:00
vendor terminal
no more fucking submodule
This commit is contained in:
parent
a48053540e
commit
d2e858ddca
88 changed files with 8681 additions and 4 deletions
27
themes/terminal/.postcssrc.js
Normal file
27
themes/terminal/.postcssrc.js
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
const url = require("postcss-url");
|
||||
const imports = require("postcss-import");
|
||||
const nested = require("postcss-nested");
|
||||
const postCSSPresetEnv = require("postcss-preset-env");
|
||||
const cssnano = require("cssnano");
|
||||
const color = require("postcss-color-mod-function");
|
||||
const mixins = require("postcss-mixins");
|
||||
|
||||
module.exports = () => ({
|
||||
plugins: [
|
||||
url,
|
||||
imports,
|
||||
mixins,
|
||||
nested,
|
||||
postCSSPresetEnv({
|
||||
stage: 1,
|
||||
preserve: true,
|
||||
features: {
|
||||
"custom-properties": true,
|
||||
},
|
||||
}),
|
||||
cssnano({
|
||||
preset: "default",
|
||||
}),
|
||||
color,
|
||||
],
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue