整了个自动生成波形的小东西(测试)

This commit is contained in:
Fang_Zhijian 2024-05-11 13:15:58 +08:00
parent cc09740a44
commit 164dcc6ac5

View File

@ -16,5 +16,13 @@ export default defineConfig({
plugins: [ plugins: [
vue(), vue(),
viteCommonjs() viteCommonjs()
] ],
build: {
rollupOptions: {
input: {
main: path.resolve(__dirname, "index.html"),
waveHelper: path.resolve(__dirname, "waveHelper.html")
}
}
}
}) })