mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 15:54:13 +01:00
Lint code
This commit is contained in:
@@ -32,10 +32,11 @@ const navs = [
|
||||
function toggleTheme() {
|
||||
if (!document.startViewTransition) {
|
||||
isDark.value = !isDark.value
|
||||
return
|
||||
}
|
||||
|
||||
// @ts-ignore
|
||||
document.startViewTransition(() => isDark.value = !isDark.value)
|
||||
document.startViewTransition(() => {
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
@@ -70,16 +70,16 @@ export default defineNuxtConfig({
|
||||
|
||||
runtimeConfig: {
|
||||
discord: {
|
||||
userId: "",
|
||||
id: "",
|
||||
token: "",
|
||||
userId: '',
|
||||
id: '',
|
||||
token: ''
|
||||
},
|
||||
wakatime: {
|
||||
userId: "",
|
||||
coding: "",
|
||||
editors: "",
|
||||
languages: "",
|
||||
os: "",
|
||||
},
|
||||
},
|
||||
userId: '',
|
||||
coding: '',
|
||||
editors: '',
|
||||
languages: '',
|
||||
os: ''
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user