mirror of
https://github.com/RabbyHub/Rabby.git
synced 2026-04-17 03:01:32 -04:00
* feat: rabby points * feat: gas account * fix: gas account gift * fix: style * fix: style * fix: text * fix: style * wip: desktop page * feat: add openInDesktop * fix: hover * fix: openInDesktop * fix: openInDesktop * feat: add webpack desktop entry * feat: add curve modal * feat: signature recored & gnosis queue * feat: add swap and bridge in desktop * feat: add desktop layout for approvals manager * feat: add send modal in desktop * feat: show send and swap modal elevate account switch * feat: add chain selector & destopProfile store * feat: add popupContainer * feat: token list * feat: protocols structure * styles: defi * feat: add approval count * style: defi * feat: defi style * feat: expand protocol list * feat: token detail entry * desc: protocols * feat: init transaction tab * fix: type * style: protocol * feat: support refresh * feat: common dapp * feat: transaction tab and token detail modal * feat: dapp actions * fix: map key * fix: token & swap click * fix: token detail modal and popup state * fix: style * fix: ellipsisAddress * fix: skip resetTokenList when same address fetch * fix: merge DappActions * fix: dashboard icon * chore: approval style * fix: format defi balance * fix: bugs * fix: style * feat: view all mode * fix: swap and send modal ui * feat: support nft * fix: nft * fix: fullscreen * fix: style * fix: withdral/claim mini sign on desktop * feat: reload tx * fix: switch lang * fix: all mode * fix: gnosis * fix: style * fix: bridge and swap switch & transaction tab address * feat: send add white list input confirm btn * feat: use virtuoso * feat: sync account * feat: polymarket * fix: tips * fix: gas fee select modal container * fix: style * fix: pending tx count * feat: update rabby-api version * fix: minisign on desktop * feat: project anchor overview * feat: add mobile css var * feat: portfolio * fix: type * wip: new style * feat: add -rb- css var * wip: new address list * wip: new address list * feat: update style * fix: tailwind * feat: update select account list * style: fold protocol & hide swap btn * feat: switch testnet tab * feat: custom token list * fix: style * feat: modal add network & token * feat: new ui * feat: new ui * fix: some style * fix: some style * fix: desktop getContainer * fix: some style * fix: some style --------- Co-authored-by: kim12322222 <jinming0228@qq.com> Co-authored-by: DMY <147dmy@gmail.com> Co-authored-by: hz002 <zs4733525@gmail.com>
22 lines
641 B
JavaScript
22 lines
641 B
JavaScript
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
const appRoot = fs.realpathSync(process.cwd());
|
|
|
|
const rootResolve = path.resolve.bind(path, appRoot);
|
|
|
|
module.exports = {
|
|
root: appRoot,
|
|
src: rootResolve('src'),
|
|
popupHtml: rootResolve('src/ui/popup.html'),
|
|
notificationHtml: rootResolve('src/ui/notification.html'),
|
|
indexHtml: rootResolve('src/ui/index.html'),
|
|
desktopHtml: rootResolve('src/ui/desktop.html'),
|
|
backgroundHtml: rootResolve('src/background/background.html'),
|
|
offscreenHtml: rootResolve('src/offscreen/offscreen.html'),
|
|
dist: rootResolve('dist'),
|
|
distMv2: rootResolve('dist-mv2'),
|
|
|
|
rootResolve,
|
|
};
|