Files
XCOpenCodeWeb/vite-theme-plugin.ts

8 lines
205 B
TypeScript
Raw Permalink Normal View History

import type { Plugin } from 'vite';
export function themeStoragePlugin(): Plugin {
return {
name: 'theme-storage',
// Plugin retained for compatibility but no longer handles custom themes
};
}