vite.config.js 152 B

12345678910
  1. export default {
  2. build: {
  3. rollupOptions: {
  4. input: ['src/index.ts'],
  5. output: {
  6. entryFileNames: `[name].js`
  7. }
  8. }
  9. }
  10. }