51fefb2882
Vuetify's way of applying themes uses an inline stylesheet. This is incompatible with our CSP policy, so this change implements a Vite plugin that writes theme styles to CSS files that are statically served. Change-Id: I73e3a032435e46d41248c5181e913a8e04f65881
7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
// Copyright (C) 2023 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
declare module 'virtual:vuetify-theme-css' {
|
|
export const themeURLs: Record<string, string>;
|
|
}
|