mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-06-02 13:15:23 -04:00
* feat(frontend): ✨ lazy-load all recipes page * feat(frontend): ✨ enable runtime theme through env-variables * docs(docs): 📝 update v1 changelog * bump version Co-authored-by: Hayden <hay-kot@pm.me>
8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
import { icons } from "~/utils/icons";
|
|
|
|
// eslint-disable-next-line no-empty-pattern
|
|
export default ({}, inject: any) => {
|
|
// Inject $hello(msg) in Vue, context and store.
|
|
inject("globals", { icons });
|
|
};
|