add form ui

add interface sound hook
This commit is contained in:
2026-05-01 00:22:47 +02:00
parent 608ead88e1
commit 134d70006c
17 changed files with 616 additions and 45 deletions
+7 -1
View File
@@ -1,3 +1,4 @@
import url from "@rollup/plugin-url";
import { defineConfig } from "tsdown";
export default defineConfig({
@@ -12,5 +13,10 @@ export default defineConfig({
],
platform: "browser",
dts: true,
plugins: [],
plugins: [
url({
include: ["**/*.mp3", "**/*.wav"],
limit: 8192,
}),
],
});