fix: extensive ui improvements
This commit is contained in:
parent
691394445a
commit
6ba64d29a9
17 changed files with 684 additions and 142 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import { defineConfig } from "vite";
|
||||
import { execSync } from "node:child_process";
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
import wasm from "vite-plugin-wasm";
|
||||
import topLevelAwait from "vite-plugin-top-level-await";
|
||||
|
|
@ -6,7 +7,12 @@ import { viteSingleFile } from "vite-plugin-singlefile";
|
|||
import ansi from "./vite-plugin-ansi";
|
||||
import markdown from "./vite-plugin-markdown";
|
||||
|
||||
const commitSha = execSync("git rev-parse HEAD", { encoding: "utf8" }).trim();
|
||||
|
||||
export default defineConfig({
|
||||
define: {
|
||||
__COMMIT_SHA__: JSON.stringify(commitSha),
|
||||
},
|
||||
plugins: [
|
||||
ansi(),
|
||||
markdown(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue