Initial commit: KSEF PDF Generator from GitHub
This commit is contained in:
19
vite.app.config.ts
Normal file
19
vite.app.config.ts
Normal 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,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user