mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-09 03:04:54 -04:00
fix: moved vuetify options from nuxt cfg to vuetify cfg (#2084)
This commit is contained in:
parent
766267961c
commit
20160346d7
@ -357,39 +357,6 @@ export default {
|
|||||||
|
|
||||||
// Vuetify module configuration: https://go.nuxtjs.dev/config-vuetify
|
// Vuetify module configuration: https://go.nuxtjs.dev/config-vuetify
|
||||||
vuetify: {
|
vuetify: {
|
||||||
customVariables: ["~/assets/variables.scss"],
|
|
||||||
icons: {
|
|
||||||
iconfont: "mdiSvg", // 'mdi' || 'mdiSvg' || 'md' || 'fa' || 'fa4' || 'faSvg'
|
|
||||||
},
|
|
||||||
defaultAssets: false,
|
|
||||||
theme: {
|
|
||||||
options: {
|
|
||||||
customProperties: true,
|
|
||||||
},
|
|
||||||
dark: false,
|
|
||||||
// Theme Config set at runtime by /plugins/theme.ts
|
|
||||||
// This config doesn't do anything.
|
|
||||||
themes: {
|
|
||||||
dark: {
|
|
||||||
primary: "#E58325",
|
|
||||||
accent: "#007A99",
|
|
||||||
secondary: "#973542",
|
|
||||||
success: "#43A047",
|
|
||||||
info: "#1976d2",
|
|
||||||
warning: "#FF6D00",
|
|
||||||
error: "#EF5350",
|
|
||||||
},
|
|
||||||
light: {
|
|
||||||
primary: "#E58325",
|
|
||||||
accent: "#007A99",
|
|
||||||
secondary: "#973542",
|
|
||||||
success: "#43A047",
|
|
||||||
info: "#1976d2",
|
|
||||||
warning: "#FF6D00",
|
|
||||||
error: "#EF5350",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
optionsPath: "./vuetify.options.js",
|
optionsPath: "./vuetify.options.js",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -6,6 +6,39 @@ if (!locale || !locale.en) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
customVariables: ["~/assets/variables.scss"],
|
||||||
|
icons: {
|
||||||
|
iconfont: "mdiSvg", // 'mdi' || 'mdiSvg' || 'md' || 'fa' || 'fa4' || 'faSvg'
|
||||||
|
},
|
||||||
|
defaultAssets: false,
|
||||||
|
theme: {
|
||||||
|
options: {
|
||||||
|
customProperties: true,
|
||||||
|
},
|
||||||
|
dark: false,
|
||||||
|
// Theme Config set at runtime by /plugins/theme.ts
|
||||||
|
// This config doesn't do anything.
|
||||||
|
themes: {
|
||||||
|
dark: {
|
||||||
|
primary: "#E58325",
|
||||||
|
accent: "#007A99",
|
||||||
|
secondary: "#973542",
|
||||||
|
success: "#43A047",
|
||||||
|
info: "#1976d2",
|
||||||
|
warning: "#FF6D00",
|
||||||
|
error: "#EF5350",
|
||||||
|
},
|
||||||
|
light: {
|
||||||
|
primary: "#E58325",
|
||||||
|
accent: "#007A99",
|
||||||
|
secondary: "#973542",
|
||||||
|
success: "#43A047",
|
||||||
|
info: "#1976d2",
|
||||||
|
warning: "#FF6D00",
|
||||||
|
error: "#EF5350",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
lang: {
|
lang: {
|
||||||
locales: {
|
locales: {
|
||||||
"el-GR": locale.el,
|
"el-GR": locale.el,
|
||||||
@ -47,5 +80,4 @@ export default {
|
|||||||
},
|
},
|
||||||
current: "en-US",
|
current: "en-US",
|
||||||
},
|
},
|
||||||
theme: {},
|
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user