diff --git a/.netlify/state.json b/.netlify/state.json deleted file mode 100644 index d0647c6..0000000 --- a/.netlify/state.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "siteId": "b43a062d-b342-4e98-847a-5e78d2e73fbb" -} \ No newline at end of file diff --git a/.nowignore b/.nowignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.nowignore @@ -0,0 +1 @@ +node_modules diff --git a/.vuepress/config.js b/.vuepress/config.js index bc3b55c..9b7d878 100644 --- a/.vuepress/config.js +++ b/.vuepress/config.js @@ -1,7 +1,7 @@ module.exports = { title: 'Thermal', description: 'One stop. Git repository', - dest: "dist", + dest: "public", head: [ ['link', { rel: 'icon', href: '/images/favicon.png' }], ['meta', { name: 'keywords', content: 'thermal, thermal app, git thermal, thermal gui, thermal git, git gui' }], diff --git a/now.json b/now.json new file mode 100644 index 0000000..71a7c16 --- /dev/null +++ b/now.json @@ -0,0 +1,28 @@ +{ + "version": 2, + "name": "thermal-docs", + "alias": "docs.thermal", + "builds": [ + { + "src": "package.json", + "use": "@now/static-build", + "config": { + "distDir": "public" + } + } + ], + "scope": "thermal", + "regions": [ + "bom1", + "dub1", + "gru1", + "hnd1", + "syd1", + "sfo1" + ], + "github": { + "enabled": true, + "autoAlias": true, + "autoJobCancelation": false + } +} diff --git a/package.json b/package.json index 2a469f9..f66da91 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,15 @@ { - "name": "thermal-website", - "version": "0.0.1", - "license": "MIT", - "scripts": { - "dev": "vuepress dev", - "build": "vuepress build" - }, - "devDependencies": { - "node-sass": "^4.11.0", - "sass-loader": "^7.1.0", - "vuepress": "^0.14.10" - } + "name": "thermal-website", + "version": "0.0.1", + "license": "MIT", + "scripts": { + "dev": "vuepress dev", + "build": "vuepress build", + "now-build": "vuepress build" + }, + "devDependencies": { + "node-sass": "^4.11.0", + "sass-loader": "^7.1.0", + "vuepress": "^0.14.10" + } }