aboutsummaryrefslogtreecommitdiff
path: root/vite.config.js
AgeCommit message (Collapse)Author
2022-09-11Add backend unit testsTerry Truong
- Add unit testing code in backend/tests/ - Change to snake-case for script/file/directory names - Use os.path.join() instead of '/' - Refactor script code into function defs and a main-guard - Make global vars all-caps Some fixes: - For getting descriptions, some wiki redirects weren't properly resolved - Linked images were sub-optimally propagated - Generation of reduced trees assumed a wiki-id association implied a description - Tilo.py had potential null dereferences by not always using a reduced node set - EOL image downloading didn't properly wait for all threads to end when finishing
2022-07-12Increase adherence to Vue's Style GuideTerry Truong
Make components have multi-word names. Make all <v-for>s have a 'key' attribute. Use scoped styles. Also add sourcemap generation.
2022-07-11Make backend dev server script serve the image filesTerry Truong
Previously, image files in backend/data/img were moved to, or symlinked from, public/. This needed to be changed before each build, otherwise vite would end up copying gigabytes of images.
2022-07-10Add preload <link> for fontTerry Truong
2022-07-09Replace CGI script with WSGI script and dev serverTerry Truong
2022-07-08Revert back to using vite-proxy for avoiding CORS issuesTerry Truong
2022-06-28Add getImagePath() to lib.tsTerry Truong
2022-06-27Enable client directly using server URL, while avoiding CORS restrictionsTerry Truong
2022-05-22Up-propgate images for usage in parents without imagesTerry Truong
Also adjust vite config to avoid apparent redundant processing when images are being downloaded.
2022-05-04Prevent vite from watching image filesTerry Truong
2022-04-26Change data URL path formatTerry Truong
2022-04-26Have tol data in sqlite db, and add server script that accesses itTerry Truong
Adapt otol-data-converting script to generate otol.db, add server.py script that provides access to that db, and adapt the app to query the server for tol data when needed.
2022-03-12Make basic conversion to typescriptTerry Truong
2022-03-03Add basic multi-level-tree displayTerry Truong
2022-03-02Initial commitTerry Truong