| 12345678910111213141516171819202122232425262728293031 |
- import { defineConfig } from 'vite';
- import uni from '@dcloudio/vite-plugin-uni';
- export default defineConfig({
- plugins: [uni()],
- define: {
- __VUE_I18N_FULL_INSTALL__: false,
- __VUE_I18N_LEGACY_API__: false,
- __VUE_I18N_PROD_DEVTOOLS__: false,
- __VUE_I18N_SSR__: false
- },
- build: {
- rollupOptions: {
- output: {
- compact: true
- }
- },
- minify: 'terser',
- terserOptions: {
- compress: {
- drop_console: true,
- },
- output: {
- comments: true
- }
- },
- },
- server: {
- port: 4000
- }
- });
|