mirror of
				https://github.com/chartdb/chartdb.git
				synced 2025-11-03 21:43:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { defineConfig } from 'vite';
 | 
						|
import react from '@vitejs/plugin-react';
 | 
						|
import { visualizer } from 'rollup-plugin-visualizer';
 | 
						|
import path from 'path';
 | 
						|
import UnpluginInjectPreload from 'unplugin-inject-preload/vite';
 | 
						|
 | 
						|
// https://vitejs.dev/config/
 | 
						|
export default defineConfig({
 | 
						|
    plugins: [
 | 
						|
        react(),
 | 
						|
        visualizer({
 | 
						|
            filename: './stats/stats.html',
 | 
						|
            open: false,
 | 
						|
        }),
 | 
						|
        UnpluginInjectPreload({
 | 
						|
            files: [
 | 
						|
                {
 | 
						|
                    entryMatch: /logo-light.png$/,
 | 
						|
                    outputMatch: /logo-light-.*.png$/,
 | 
						|
                },
 | 
						|
                {
 | 
						|
                    entryMatch: /logo-dark.png$/,
 | 
						|
                    outputMatch: /logo-dark-.*.png$/,
 | 
						|
                },
 | 
						|
            ],
 | 
						|
        }),
 | 
						|
    ],
 | 
						|
    resolve: {
 | 
						|
        alias: {
 | 
						|
            '@': path.resolve(__dirname, './src'),
 | 
						|
        },
 | 
						|
    },
 | 
						|
    build: {
 | 
						|
        rollupOptions: {
 | 
						|
            external: (id) => /__test__/.test(id),
 | 
						|
            output: {
 | 
						|
                assetFileNames: (assetInfo) => {
 | 
						|
                    if (
 | 
						|
                        assetInfo.names &&
 | 
						|
                        assetInfo.originalFileNames.some((name) =>
 | 
						|
                            name.startsWith('src/assets/templates/')
 | 
						|
                        )
 | 
						|
                    ) {
 | 
						|
                        return 'assets/[name][extname]';
 | 
						|
                    }
 | 
						|
                    return 'assets/[name]-[hash][extname]';
 | 
						|
                },
 | 
						|
            },
 | 
						|
        },
 | 
						|
    },
 | 
						|
});
 |