Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make it easier to deploy tailwind css files #2049

Open
mpscholten opened this issue Feb 25, 2025 · 0 comments
Open

make it easier to deploy tailwind css files #2049

mpscholten opened this issue Feb 25, 2025 · 0 comments

Comments

@mpscholten
Copy link
Member

mpscholten commented Feb 25, 2025

                packages.appStylesheet =
                    let
                        tailwind = with pkgs; (nodePackages.tailwindcss.overrideAttrs
                            (_: {
                                plugins = [
                                    nodePackages."@tailwindcss/aspect-ratio"
                                    nodePackages."@tailwindcss/forms"
                                    nodePackages."@tailwindcss/language-server"
                                    nodePackages."@tailwindcss/line-clamp"
                                    nodePackages."@tailwindcss/typography"
                                ];
                            })
                        );
                        filter = ihp.inputs.nix-filter.lib;
                    in pkgs.stdenv.mkDerivation {
                        name = "${config.ihp.appName}-appStyleshet";
                        src = filter {
                            root = ./tailwind;
                            include = [(filter.matchExt "css") (filter.matchExt "js")];
                            exclude = [];
                        };
                        nativeBuildInputs = [tailwind];
                        allowedReferences = [];
                        buildPhase = ''
                            ${tailwind}/bin/tailwindcss -c tailwind.config.js -i app.css -o $out
                        '';
                    };

                packages.optimized-prod-server-with-frontend = self.packages."${system}".optimized-prod-server.overrideAttrs (finalAttrs: previousAttrs: {
                        name = "${previousAttrs.name}-with-frontend";
                        nativeBuildInputs = previousAttrs.nativeBuildInputs ++ [ self.packages."${system}".frontend ];
                        preBuild = ''
                            mkdir -p static/Frontend
                            ln -s ${self.packages."${system}".frontend}/main.css static/Frontend/main.css
                        '';
                    });

services.ihp.package = self.packages."${pkgs.system}".optimized-prod-server-with-frontend;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant