diff --git a/.eleventy.js b/.eleventy.js index bfa393cec..07996ac5c 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -156,7 +156,7 @@ module.exports = function (eleventyConfig) { } // Generate absolute urls for tags - Parcel doesn't rename them anyway. // Otherwise, prepend the base URL so we get an absolute path. - let baseUrl = element === 'a' ? 'https://v2.parceljs.org' + base : base; + let baseUrl = element === 'a' ? 'https://parceljs.org' + base : base; return urlJoin(baseUrl, url); } })) diff --git a/public-url.js b/public-url.js index 25ac4539b..5ada8ee7d 100644 --- a/public-url.js +++ b/public-url.js @@ -1,6 +1,6 @@ switch (process.env.VERCEL_ENV) { case 'production': - process.stdout.write('https://v2.parceljs.org'); + process.stdout.write('https://parceljs.org'); break; case 'preview': process.stdout.write('https://' + process.env.VERCEL_URL); diff --git a/src/feed.njk b/src/feed.njk index 1cdc14b5d..08dd0c64e 100644 --- a/src/feed.njk +++ b/src/feed.njk @@ -5,8 +5,8 @@ "metadata": { "title": "Parcel Blog", "subtitle": "Blog for the blazing fast, zero configuration web application bundler", - "url": "https://v2.parceljs.org", - "feedUrl": "https://v2.parceljs.org/feed.xml", + "url": "https://parceljs.org", + "feedUrl": "https://parceljs.org/feed.xml", "author": { "name": "Devon Govett", "email": "devongovett@gmail.com" diff --git a/vercel.json b/vercel.json index e0d42b610..1e40b357b 100644 --- a/vercel.json +++ b/vercel.json @@ -1,4 +1,4 @@ { "version": 2, - "alias": ["v2.parceljs.org"] + "alias": ["parceljs.org"] }