fix: don't open external links to another tab by default

This caused a problem for links that were not blog.embarklabs.io,
but still embarklabs.io, because it opened a new tab each time
This commit is contained in:
Jonathan Rainville 2020-03-03 11:02:10 -05:00 committed by Jakub Sokołowski
parent f65c99db16
commit 30d0e96bb8
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
3 changed files with 4 additions and 2 deletions

View File

@ -37,3 +37,5 @@ node_sass:
outputStyle: nested
precision: 5
sourceComments: false
external_link:
enable: false

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@ const path = require('path');
const args = require('minimist')(process.argv.slice(2));
const execWithOutput = (cmd) => execSync(cmd, { stdio: 'inherit' });
// FIXME this file still points to the Embark site
const DEPLOY_REPOSITORY = 'https://github.com/embarklabs/embark-site';
const DEPLOY_REMOTE = 'embark-site';