forked from Koenkk/zigbee2mqtt.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Dependencies; Make Vendor in Device-Page clickable (Koenkk#1705)
* Update Dependencies; Make Vendor in Device-Page clickable * Readd max-old-space param Co-authored-by: Koen Kanters <[email protected]>
- Loading branch information
Showing
15 changed files
with
5,110 additions
and
4,133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { defineClientConfig } from '@vuepress/client' | ||
|
||
export default defineClientConfig({ | ||
async enhance({ app, router, siteData }) { | ||
// @ts-ignore | ||
if (!__VUEPRESS_SSR__) { | ||
const Quasar = await import('quasar/src/install-quasar.js'); | ||
app.use(Quasar.default); | ||
} | ||
}, | ||
setup() { | ||
}, | ||
rootComponents: [], | ||
}); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export const domain = 'https://www.zigbee2mqtt.io'; | ||
export const isDevelop = !!process.env.DEVELOP_BRANCH; | ||
|
||
export function getBase() { | ||
let base = '/'; | ||
if (isDevelop) base += 'develop/'; | ||
return base as '/' | `/${string}/`; | ||
} |
Oops, something went wrong.