Folo/apps/desktop/plugins/vite/ast.ts

16 lines
318 B
TypeScript

import { RemoveWrapperFunction } from "unplugin-ast/transformers"
import AST from "unplugin-ast/vite"
export const astPlugin = AST({
transformer: [
RemoveWrapperFunction([
"tw",
"defineSettingPageData",
"t_",
"tShortcuts",
"tSettings",
"defineFollowCommand",
]),
],
})