Some checks failed
Build and Push Docker Image to GHCR / build-and-push (push) Has been cancelled
This commit fixes a plethora of bugs related to the admin UI, as well as dramatically improving the performance of in-place editing. Furthermore, several server bugs and misc bugs have been fixed. The admin UI is now entirely client side when adding, deleting, or editng a category or link. Other internal improvements hasve also been made.
17 lines
409 B
JavaScript
17 lines
409 B
JavaScript
import { purgeCSSPlugin } from "@fullhuman/postcss-purgecss";
|
|
import postcssPresetEnv from "postcss-preset-env";
|
|
import cssnano from "cssnano";
|
|
|
|
export default {
|
|
plugins: [
|
|
purgeCSSPlugin({
|
|
content: ["./src/**/*.hbs", "./src/**/*.js"],
|
|
}),
|
|
postcssPresetEnv({
|
|
browsers: "last 4 versions",
|
|
autoprefixer: {},
|
|
}),
|
|
cssnano,
|
|
],
|
|
};
|