Initial commit: KSEF PDF Generator from GitHub

This commit is contained in:
2026-03-18 22:35:33 +01:00
parent f48680a65f
commit 4e49c625bf
11 changed files with 1375 additions and 1 deletions

19
vite.app.config.ts Normal file
View File

@@ -0,0 +1,19 @@
import path from 'path';
import { defineConfig } from 'vite';
export default defineConfig({
root: path.resolve(__dirname, 'src/app-public'),
base: '/ksef/',
build: {
outDir: path.resolve(__dirname, 'dist-app'),
emptyOutDir: true,
minify: 'esbuild',
sourcemap: false,
},
server: {
port: 5173,
open: true,
},
});