11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import type { UserConfigExport } from '@tarojs/cli';
|
|
|
|
export default {
|
|
mini: {},
|
|
h5: {
|
|
staticDirectory: 'assets',
|
|
// 确保产物为 es5
|
|
legacy: true,
|
|
},
|
|
} satisfies UserConfigExport<'vite'>;
|