Skip to content

Commit d4589e1

Browse files
committed
Create rollup.config.mjs
1 parent 40de2d0 commit d4589e1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

rollup.config.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { defineConfig } from 'rollup';
2+
import html from '@rollup/plugin-html';
3+
4+
export default defineConfig({
5+
input: 'src/main.js', // Ana giriş dosyanızı burada belirtin
6+
// Diğer yapılandırma ayarları...
7+
plugins: [html()],
8+
});

0 commit comments

Comments
 (0)