0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 05:33:02 -05:00
penpot-exporter-figma-plugin/vite.config.ts

24 lines
624 B
TypeScript
Raw Normal View History

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',
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
},
external: ['!../css/base.css']
2024-04-12 11:52:19 -05:00
}
}
});