12345678910111213141516171819202122232425262728293031 |
- module.exports = {
- presets: [
- ['taro', {
- framework: 'react',
- ts: true
- }]
- ],
- plugins: [
- [
- "import",
- {
- libraryName: "@taroify/core",
- libraryDirectory: "",
- style: true,
- },
- "@taroify/core",
- ],
- [
- "import",
- {
- libraryName: "@taroify/icons",
- libraryDirectory: "",
- camel2DashComponentName: false,
- style: () => "@taroify/icons/style",
- },
- "@taroify/icons",
- ],
- ]
- }
|