* feat(frontend): refactor and modernize welcome page - also fixes navbar issue. Closes: #1533 * fix(frontend): lint issues & use standard variables instead of the constants from error.vue * fix(frontend): remove creator count as it's not a count of all users * fix(frontend): lang reshuffle * feat: rinthbot * fix: lint issues * fix: sizing of bot on mobile & scss cleanup for error.vue * fix: lint issues * fix: ui lint
12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
declare module '*.svg?component' {
|
|
import type { FunctionalComponent, SVGAttributes } from 'vue'
|
|
|
|
const src: FunctionalComponent<SVGAttributes>
|
|
export default src
|
|
}
|
|
|
|
declare module '*.webp' {
|
|
const src: string
|
|
export default src
|
|
}
|