Skip to content

Commit

Permalink
chore: modify plugin react (#69)
Browse files Browse the repository at this point in the history
Co-authored-by: dev-redo <[email protected]>
  • Loading branch information
dev-redo and dev-redo committed May 24, 2024
1 parent d4cbc1d commit d4a368c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Corca <[email protected]>",
"description": "Corca Design System",
"private": false,
"version": "0.0.9",
"version": "0.0.10",
"type": "module",
"packageManager": "[email protected]",
"main": "dist/index.js",
Expand Down
3 changes: 2 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { resolve } from 'path';
import { defineConfig } from 'vite';
import dts from 'vite-plugin-dts';
import react from '@vitejs/plugin-react';

export default defineConfig({
build: {
Expand All @@ -20,5 +21,5 @@ export default defineConfig({
},
},
},
plugins: [dts()],
plugins: [react(), dts()],
});

0 comments on commit d4a368c

Please sign in to comment.