2024-05-09 05:56:45 -05:00
|
|
|
import preact from '@preact/preset-vite';
|
2024-04-12 11:52:19 -05:00
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
import { viteSingleFile } from 'vite-plugin-singlefile';
|
|
|
|
import svgr from 'vite-plugin-svgr';
|
|
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
root: './ui-src',
|
2024-05-09 05:56:45 -05:00
|
|
|
plugins: [svgr(), preact(), viteSingleFile(), tsconfigPaths()],
|
2024-04-12 11:52:19 -05:00
|
|
|
build: {
|
|
|
|
target: 'esnext',
|
|
|
|
assetsInlineLimit: 100000000,
|
|
|
|
chunkSizeWarningLimit: 100000000,
|
|
|
|
cssCodeSplit: false,
|
|
|
|
outDir: '../dist',
|
|
|
|
rollupOptions: {
|
|
|
|
output: {
|
|
|
|
inlineDynamicImports: true
|
2024-05-09 05:56:45 -05:00
|
|
|
},
|
|
|
|
external: ['!../css/base.css']
|
2024-04-12 11:52:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|