UNPKG

@unielon/wallet-tg-sdk

Version:

unielon wallet sdk for telegram

22 lines (20 loc) 466 B
import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], css:{ preprocessorOptions: { less: { math: "parens-division", }, }, modules: { scopeBehaviour: "local", generateScopedName: "[local]___[hash:base64:6]", }, }, resolve: { extensions: [".js", ".jsx", ".ts", ".tsx", ".mjs", ".less", ".css"], }, });