diff --git a/.eslintrc.json b/.eslintrc.json index 61f5f27..39c335e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,6 +1,7 @@ { "extends": "next/core-web-vitals", "rules": { - "@stylistic/jsx/jsx-pascal-case": "off" + "@stylistic/jsx/jsx-pascal-case": "off", + "@next/next/no-html-link-for-pages": "off" } } diff --git a/next.config.mjs b/next.config.mjs index d1212ad..3165df0 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,7 +1,8 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, - output: 'export' + output: 'export', + trailingSlash: true // ensure pages get their own directory in output } export default nextConfig diff --git a/package.json b/package.json index d80febd..d619210 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ "start": "next start", "link": "npx standard", "format": "npx standard --fix", - "prepare": "husky" + "prepare": "husky", + "deploy": "./util/deploy-gcloud.sh" }, "dependencies": { "next": "14.1.1", diff --git a/src/lib/content.js b/src/lib/content.js index e13870a..3940bc5 100644 --- a/src/lib/content.js +++ b/src/lib/content.js @@ -13,7 +13,7 @@ export function getMarkdownEntry (path) { const converter = new showdown.Converter() const html = converter.makeHtml(body) - const slug = toSlug(path.substring(path.lastIndexOf('/'))) + const slug = toSlug(path.substring(path.lastIndexOf('/') + 1)) return { attributes, diff --git a/src/pages/fun/[slug].js b/src/pages/fun/[slug].js index d124ebb..f8a6a7e 100644 --- a/src/pages/fun/[slug].js +++ b/src/pages/fun/[slug].js @@ -28,8 +28,6 @@ export function getStaticPaths () { } })) - console.log(paths) - return { fallback: false, paths @@ -38,6 +36,7 @@ export function getStaticPaths () { export function getStaticProps ({ params }) { const path = `./content/fun/${params.slug}.md` + const entry = getMarkdownEntry(path) return { props: { ...entry } } } diff --git a/util/deploy-gcloud.sh b/util/deploy-gcloud.sh new file mode 100755 index 0000000..ab01e73 --- /dev/null +++ b/util/deploy-gcloud.sh @@ -0,0 +1,34 @@ +BUCKET_URL="gs://aaronjy-www" +BACKUP_BUCKET_URL="gs://aaronjy-www-backup" + +echo "------------------------------" +echo "DELETING CURRENT SITE FILES" +echo "------------------------------" + +gcloud storage rm $BUCKET_URL/** + +echo "------------------------------" +echo "REMOVE SENSITIVE FILES" +echo "------------------------------" + +rm -rfv ./out/admin/ + +echo "Removed all sensitive files." + +echo "------------------------------" +echo "UPLOADING NEW SITE FILES" +echo "------------------------------" + +gcloud storage cp --recursive ./out/* $BUCKET_URL --gzip-in-flight-all + +echo "------------------------------" +echo "INVALIDATING GLOBAL CACHE" +echo "------------------------------" + +echo "WARNING: This is an async operation that can take upwards of 10 minutes depending on how fast Google Cloud CDN invalidates its cache. It does take around 10 minutes on average." + +gcloud compute url-maps invalidate-cdn-cache lb-aaronjy-www --path "/*" --async + +echo "------------------------------" +echo "DONE!" +echo "------------------------------"