Merge branch 'table_column_resize' into dev_environment
This commit is contained in:
commit
97a7e68474
1 changed files with 7 additions and 1 deletions
|
|
@ -2,6 +2,7 @@ import { defineConfig } from 'vite'
|
|||
import react from '@vitejs/plugin-react'
|
||||
import tsconfigPaths from 'vite-tsconfig-paths'
|
||||
import { VitePWA } from 'vite-plugin-pwa';
|
||||
import * as path from 'path' // ✅ Import path module
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
|
|
@ -39,7 +40,12 @@ export default defineConfig({
|
|||
outDir: './build',
|
||||
sourcemap: true,
|
||||
minify: false,
|
||||
target: 'esnext'
|
||||
target: 'esnext',
|
||||
rollupOptions: {
|
||||
input: {
|
||||
main: path.resolve(__dirname, 'indexV2.html')
|
||||
}
|
||||
}
|
||||
},
|
||||
esbuild: {
|
||||
keepNames: true, // Prevent function name mangling
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue