forked from mystiq/hydrogen-web
bring back postcss plugins, apart from autoprefixer, which breaks vite
This commit is contained in:
parent
a504e74f54
commit
09338d8aa8
1 changed files with 24 additions and 3 deletions
|
@ -1,8 +1,14 @@
|
||||||
const injectWebManifest = require("./scripts/build-plugins/manifest");
|
const cssvariables = require("postcss-css-variables");
|
||||||
const injectServiceWorker = require("./scripts/build-plugins/service-worker");
|
const autoprefixer = require("autoprefixer");
|
||||||
const legacyBuild = require("./scripts/build-plugins/legacy-build");
|
const flexbugsFixes = require("postcss-flexbugs-fixes");
|
||||||
|
|
||||||
const fs = require("fs");
|
const fs = require("fs");
|
||||||
const path = require("path");
|
const path = require("path");
|
||||||
|
|
||||||
|
const injectWebManifest = require("./scripts/build-plugins/manifest");
|
||||||
|
const injectServiceWorker = require("./scripts/build-plugins/service-worker");
|
||||||
|
// const legacyBuild = require("./scripts/build-plugins/legacy-build");
|
||||||
|
|
||||||
// we could also just import {version} from "../../package.json" where needed,
|
// we could also just import {version} from "../../package.json" where needed,
|
||||||
// but this won't work in the service worker yet as it is not transformed yet
|
// but this won't work in the service worker yet as it is not transformed yet
|
||||||
// TODO: we should emit a chunk early on and then transform the asset again once we know all the other assets to cache
|
// TODO: we should emit a chunk early on and then transform the asset again once we know all the other assets to cache
|
||||||
|
@ -42,6 +48,21 @@ export default {
|
||||||
],
|
],
|
||||||
define: {
|
define: {
|
||||||
"HYDROGEN_VERSION": JSON.stringify(version)
|
"HYDROGEN_VERSION": JSON.stringify(version)
|
||||||
|
},
|
||||||
|
css: {
|
||||||
|
postcss: {
|
||||||
|
plugins: [
|
||||||
|
cssvariables({
|
||||||
|
preserve: (declaration) => {
|
||||||
|
return declaration.value.indexOf("var(--ios-") == 0;
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
// the grid option creates some source fragment that causes the vite warning reporter to crash because
|
||||||
|
// it wants to log a warning on a line that does not exist in the source fragment.
|
||||||
|
// autoprefixer({overrideBrowserslist: ["IE 11"], grid: "no-autoplace"}),
|
||||||
|
flexbugsFixes()
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue