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