diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-06-27 21:03:51 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-06-27 21:28:10 +1000 |
| commit | 96bb515a603499abb016d381f0bdb5bd51ebda92 (patch) | |
| tree | 9a1f4331b942bdbe33418ff67bf3d5f8a338e147 /src/App.vue | |
| parent | 761eef9a720b8fb85786ba4dc84805fdcc0d7d48 (diff) | |
Enable client directly using server URL, while avoiding CORS restrictions
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue index d6c1d7a..b0aa328 100644 --- a/src/App.vue +++ b/src/App.vue @@ -83,10 +83,10 @@ import SettingsIcon from './components/icon/SettingsIcon.vue'; import HelpIcon from './components/icon/HelpIcon.vue'; // Other // Note: Import paths lack a .ts or .js extension because .ts makes vue-tsc complain, and .js makes vite complain -import {TolNode, TolMap, Action, UiOptions} from './lib'; +import {TolNode, TolMap, getServerResponse, Action, UiOptions} from './lib'; import {LayoutNode, LayoutOptions, LayoutTreeChg} from './layout'; import {initLayoutTree, initLayoutMap, tryLayout} from './layout'; -import {getServerResponse, getBreakpoint, getScrollBarWidth, arraySum, randWeightedChoice, timeout} from './util'; +import {getBreakpoint, getScrollBarWidth, arraySum, randWeightedChoice, timeout} from './util'; // Type representing auto-mode actions type AutoAction = 'move across' | 'move down' | 'move up' | Action; |
