Root source

This commit is contained in:
James Cole
2022-02-27 10:12:54 +01:00
parent cabd3d60f0
commit 95a7a0c90d
5 changed files with 126 additions and 0 deletions

7
frontend/src/env.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: string;
VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined;
VUE_ROUTER_BASE: string | undefined;
}
}