Merge pull request #222 from brecert/actions-demo

This commit is contained in:
Paul Makles
2021-09-11 23:51:28 +01:00
committed by GitHub
4 changed files with 87 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ import Client from "./revoltjs/RevoltClient";
export default function Context({ children }: { children: Children }) {
return (
<Router>
<Router basename={import.meta.env.BASE_URL}>
<State>
<Theme>
<Settings>

1
src/env.d.ts vendored
View File

@@ -2,6 +2,7 @@ interface ImportMetaEnv {
DEV: boolean;
VITE_API_URL: string;
VITE_THEMES_URL: string;
BASE_URL: string;
}
interface ImportMeta {