mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
add vite stub
This commit is contained in:
parent
4e7c03a5ad
commit
639ce448bd
21
vite.config.ts.react
Normal file
21
vite.config.ts.react
Normal file
@ -0,0 +1,21 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import react from '@vitejs/plugin-react';
|
||||
import tsconfigPaths from 'vite-tsconfig-paths';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [tsconfigPaths(), react()],
|
||||
server: {
|
||||
port: 3000,
|
||||
},
|
||||
build: {
|
||||
assetsDir: '',
|
||||
chunkSizeWarningLimit: 1500,
|
||||
rollupOptions: {
|
||||
output: {
|
||||
// This will output a single bundle file
|
||||
entryFileNames: 'bundle.js',
|
||||
chunkFileNames: 'bundle.js'
|
||||
}
|
||||
},
|
||||
},
|
||||
});
|
Loading…
Reference in New Issue
Block a user