diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 65db325b8..d9ab0d4a5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,6 +6,8 @@ on: jobs: build: runs-on: ubuntu-latest + env: + NODE_OPTIONS: '--max_old_space_size=4096' steps: - uses: actions/checkout@v2 - name: Build and deploy diff --git a/docs/.vuepress/components/Feedback.vue b/docs/.vuepress/components/Feedback.vue new file mode 100644 index 000000000..f36126b9f --- /dev/null +++ b/docs/.vuepress/components/Feedback.vue @@ -0,0 +1,53 @@ + + + Was this page helpful? + + + + + + {{message}} + + + + + + + diff --git a/docs/.vuepress/theme-test/Layout.vue b/docs/.vuepress/theme-test/Layout.vue deleted file mode 100644 index defd2b3df..000000000 --- a/docs/.vuepress/theme-test/Layout.vue +++ /dev/null @@ -1,6 +0,0 @@ - - - Read time: {{$page.readingTime.text}} - - - diff --git a/docs/.vuepress/theme/Layout.vue b/docs/.vuepress/theme/Layout.vue new file mode 100644 index 000000000..29a06af86 --- /dev/null +++ b/docs/.vuepress/theme/Layout.vue @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/docs/.vuepress/theme/index.js b/docs/.vuepress/theme/index.js new file mode 100644 index 000000000..48fc5efee --- /dev/null +++ b/docs/.vuepress/theme/index.js @@ -0,0 +1,3 @@ +module.exports = { + extend: '@vuepress/theme-default', +}
{{message}}