123456789101112131415161718192021 |
-
-
- module.exports = {
- presets: [
- ['taro', {
- framework: 'react',
- ts: false
- }]
- ],
- plugins: [
- [
- "import",
- {
- libraryName: "@antmjs/vantui",
- libraryDirectory: "es",
- style: (name) => `${name}/style/less`,
- },
- "@antmjs/vantui"
- ]
- ]
- }
|