vite.config.js 255 B

123456789101112131415
  1. export default {
  2. define: {
  3. __VUE_PROD_DEVTOOLS__: false,
  4. __VUE_OPTIONS_API__: true
  5. },
  6. build: {
  7. rollupOptions: {
  8. input: ['src/index.ts'],
  9. output: {
  10. entryFileNames: `[name].js`
  11. }
  12. },
  13. minify: 'terser'
  14. }
  15. }