123456789101112131415161718192021 |
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- import topLevelAwait from 'vite-plugin-top-level-await'
- // https://vitejs.dev/config/
- export default defineConfig({
- server: {
- port: 3000
- },
- css: [
- "../../assets/iconfont/iconfont.css"
- ],
- plugins: [
- vue(),
- topLevelAwait({
- // The export name of top-level await promise for each chunk module
- promiseExportName: '__tla',
- // The function to generate import names of top-level await promise in each chunk module
- promiseImportName: i => `__tla_${i}`
- })
- ],
- })
|