new structure

This commit is contained in:
2026-03-20 01:11:32 +01:00
parent d24bad018e
commit 4b4eaa083b
76 changed files with 578 additions and 72 deletions

24
vite.config.js Normal file
View File

@@ -0,0 +1,24 @@
import { defineConfig } from 'vite';
import tailwindcss from '@tailwindcss/vite';
const isDev = process.env.NODE_ENV === 'development';
export default defineConfig({
base: isDev ? '/absproxy/5175/' : '/',
plugins: [
tailwindcss(),
],
root: 'UI',
build: {
outDir: '../dist',
},
resolve: {
alias: {
'sigpro': './sigpro.js',
},
},
server: {
port: 5175,
open: true,
allowedHosts: true,
},
});