UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

31 lines (27 loc) 1.16 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Nx Workspace Project Graph</title> <base href="/"> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="icon" type="image/x-icon" href="favicon.ico" /> <script id="environment" src="environment.js"></script> <!-- Theming --> <script> // On page load or when changing themes, best to add inline in `head` to avoid FOUC if ( localStorage.getItem('nx-dep-graph-theme') === 'dark' || (localStorage.getItem('nx-dep-graph-theme') === null && window.matchMedia('(prefers-color-scheme: dark)').matches) ) { document.documentElement.classList.add('dark'); } else { document.documentElement.classList.remove('dark'); } </script> <link rel="stylesheet" href="styles.css"></head> <body class="bg-white text-slate-500 dark:bg-slate-900 dark:text-slate-400"> <div class="flex p-0" id="app"></div> <script src="runtime.js" type="module"></script><script src="styles.js" type="module"></script><script src="main.js" type="module"></script></body> </html>