public static void CreateTailwindConfig(string projectDirectory, string authServerProjectName, IFileSystem fileSystem)
        {
            var classPath = ClassPathHelper.AuthServerTailwindConfigClassPath(projectDirectory, "tailwind.config.js", authServerProjectName);
            var fileText  = GetPostCssText();

            Utilities.CreateFile(classPath, fileText, fileSystem);
        }