feat: footer in sider

This commit is contained in:
Corentin Thomasset 2022-04-16 11:45:50 +02:00
parent 5fde77604c
commit 3f038503dd
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 53 additions and 0 deletions

10
env.d.ts vendored
View file

@ -1,2 +1,12 @@
/// <reference types="vite/client" />
/// <reference types="vite-svg-loader" />
interface ImportMetaEnv {
PACKAGE_VERSION: string;
PROD: boolean;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}