restore composer.json, add mysqli extension

This commit is contained in:
2026-04-15 17:02:52 +05:00
commit 77cf56a348
4317 changed files with 1397107 additions and 0 deletions

10
public/vendor/editor/postcss.config.js vendored Executable file
View File

@@ -0,0 +1,10 @@
// It is handy to not have those transformations while we developing
if (process.env.NODE_ENV === "production") {
module.exports = {
plugins: [require("autoprefixer"), require("cssnano")]
};
} else if (process.env.NODE_ENV === "development") {
module.exports = {
plugins: [require("autoprefixer")]
};
}