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