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

fix styles (#101)

This commit is contained in:
Jordi Sala Morales 2024-05-13 10:29:40 +02:00 committed by GitHub
parent bff2157dc4
commit 887f0b9205
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,4 @@
import 'node_modules/@create-figma-plugin/ui/lib/css/base.css';
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';

View file

@ -18,6 +18,9 @@ export default defineConfig({
emptyOutDir: false,
target: 'esnext',
reportCompressedSize: false,
outDir: '../dist'
outDir: '../dist',
rollupOptions: {
external: ['!../css/base.css']
}
}
});