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:
parent
bff2157dc4
commit
887f0b9205
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
import 'node_modules/@create-figma-plugin/ui/lib/css/base.css';
|
||||||
import { StrictMode } from 'react';
|
import { StrictMode } from 'react';
|
||||||
import { createRoot } from 'react-dom/client';
|
import { createRoot } from 'react-dom/client';
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,9 @@ export default defineConfig({
|
||||||
emptyOutDir: false,
|
emptyOutDir: false,
|
||||||
target: 'esnext',
|
target: 'esnext',
|
||||||
reportCompressedSize: false,
|
reportCompressedSize: false,
|
||||||
outDir: '../dist'
|
outDir: '../dist',
|
||||||
|
rollupOptions: {
|
||||||
|
external: ['!../css/base.css']
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue