# Description of Changes Refactor frontend auth to the shared folder and hook it up to both the portal and editor so they share the same system. Also adds various tasks to help run the portal, including `task dev:portal` to spawn the portal with the backend, and `task dev:portal:proxy` to spawn the editor, portal and backend, and a reverse proxy (at localhost:3000) to allow you to use both at once to simulate how this will actually be deployed, allowing you to check whether the seamless transition between the two actually works.
14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
declare module "*.css" {
|
|
// Default export is the CSS-module class map; side-effect imports ignore it.
|
|
const classes: { readonly [key: string]: string };
|
|
export default classes;
|
|
}
|
|
declare module "*.svg" {
|
|
const src: string;
|
|
export default src;
|
|
}
|
|
declare module "*.png" {
|
|
const src: string;
|
|
export default src;
|
|
}
|