You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.0 KiB
23 lines
1.0 KiB
|
2 years ago
|
export * from '@unocss/core';
|
||
|
|
export { default as presetUno } from '@unocss/preset-uno';
|
||
|
|
export { default as presetAttributify } from '@unocss/preset-attributify';
|
||
|
|
export { default as presetTagify } from '@unocss/preset-tagify';
|
||
|
|
export { default as presetIcons } from '@unocss/preset-icons';
|
||
|
|
export { default as presetWebFonts } from '@unocss/preset-web-fonts';
|
||
|
|
export { default as presetTypography } from '@unocss/preset-typography';
|
||
|
|
export { default as presetMini } from '@unocss/preset-mini';
|
||
|
|
export { default as presetWind } from '@unocss/preset-wind';
|
||
|
|
export { default as transformerDirectives } from '@unocss/transformer-directives';
|
||
|
|
export { default as transformerVariantGroup } from '@unocss/transformer-variant-group';
|
||
|
|
export { default as transformerCompileClass } from '@unocss/transformer-compile-class';
|
||
|
|
export { default as transformerAttributifyJsx } from '@unocss/transformer-attributify-jsx';
|
||
|
|
|
||
|
|
function defineConfig(config) {
|
||
|
|
return config;
|
||
|
|
}
|
||
|
|
function definePreset(preset) {
|
||
|
|
return preset;
|
||
|
|
}
|
||
|
|
|
||
|
|
export { defineConfig, definePreset };
|