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