Skip to content

Commit 021fa67

Browse files
committed
fix: fix the admin directory problem
1 parent 9f1d1f2 commit 021fa67

18 files changed

+72
-244
lines changed

assets/css/main.css

Whitespace-only changes.

content/blog/2016-12-17-making-sense-of-the-scaas-new-flavor-wheel.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
22
title: Making sense of the SCAA’s new Flavor Wheel
33
date: 2016-12-17T15:04:10.000Z
4-
featuredpost: false
5-
featuredimage: /assets/images/flavor_wheel.jpg
64
description: The Coffee Taster’s Flavor Wheel, the official resource used by coffee tasters, has been revised for the first time this year.
5+
image: /assets/images/flavor_wheel.jpg
76
tags:
87
- flavor
98
- tasting

content/blog/2017-01-04-a-beginners-guide-to-brewing-with-chemex.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
22
title: A beginners’ guide to brewing with Chemex
33
date: 2017-01-04T15:04:10.000Z
4-
featuredpost: false
5-
featuredimage: /assets/images/chemex.jpg
64
description: Brewing with a Chemex probably seems like a complicated, time-consuming ordeal, but once you get used to the process, it becomes a soothing ritual that's worth the effort every time.
5+
image: /assets/images/chemex.jpg
76
tags:
87
- brewing
98
- chemex

content/blog/2017-01-04-just-in-small-batch-of-jamaican-blue-mountain-in-store-next-week.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
---
22
title: 'Just in: small batch of Jamaican Blue Mountain in store next week'
33
date: 2017-01-04T15:04:10.000Z
4-
featuredpost: true
5-
featuredimage: /assets/images/assets/images/blog-index.jpg
64
description: >-
75
We’re proud to announce that we’ll be offering a small batch of Jamaica Blue
86
Mountain coffee beans in our store next week.
7+
image: /assets/images/blog-index.jpg
98
tags:
109
- jamaica
1110
- green beans
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"date": "2020-09-08T20:35:29.027Z",
3+
"project_type": "story",
4+
"title": "Story test",
5+
"description": "Short descriptive text",
6+
"body": "Longer **markdown**-*enabled* content text."
7+
}

content/site/info.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"sitename": "NTN Boilerplate",
3+
"sitedescription": "NTN Boilerplate description",
4+
"sitelang": "en-US"
5+
}

jsconfig.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"paths": {
5+
"~/*": ["./*"],
6+
"@/*": ["./*"],
7+
"~~/*": ["./*"],
8+
"@@/*": ["./*"]
9+
}
10+
},
11+
"exclude": ["node_modules", ".nuxt", "dist"]
12+
}

lambda/hello.js

-19
This file was deleted.

netlify.toml

+2-14
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
11
[build]
2-
publish = "dist"
3-
command = "npm run generate"
4-
functions = "lambda"
5-
6-
[[redirects]]
7-
from = "/admin"
8-
to = "/admin/"
9-
status = 301
10-
force = true
11-
12-
[[redirects]]
13-
from = "/api/*"
14-
to = "/.netlify/functions/:splat"
15-
status = 200
2+
command = "npm run generate"
3+
publish = "dist/"

nuxt.config.js

+14-5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@ export default {
22
// Target (https://go.nuxtjs.dev/config-target)
33
target: 'static',
44

5+
// Environment variables: https://nuxtjs.org/api/configuration-env/
6+
env: {
7+
url:
8+
process.env.NODE_ENV === 'production'
9+
? process.env.URL || 'http://createADotEnvFileAndSetURL'
10+
: 'http://localhost:3000',
11+
lang: 'en-US',
12+
},
13+
514
// Global page headers (https://go.nuxtjs.dev/config-head)
615
head: {
716
title: 'Nuxt + Netlify CMS Starter',
@@ -15,8 +24,12 @@ export default {
1524
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
1625
},
1726

27+
generate: {
28+
fallback: true,
29+
},
30+
1831
// Global CSS (https://go.nuxtjs.dev/config-css)
19-
css: [],
32+
css: ['@/assets/css/main.css'],
2033

2134
// Plugins to run before rendering page (https://go.nuxtjs.dev/config-plugins)
2235
plugins: [],
@@ -34,10 +47,6 @@ export default {
3447

3548
// Modules (https://go.nuxtjs.dev/config-modules)
3649
modules: [
37-
// https://go.nuxtjs.dev/axios
38-
// '@nuxtjs/axios',
39-
// https://go.nuxtjs.dev/pwa
40-
// '@nuxtjs/pwa',
4150
// https://go.nuxtjs.dev/content
4251
'@nuxt/content',
4352
],

package-lock.json

+9-109
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
},
1616
"dependencies": {
1717
"@nuxt/content": "^1.9.0",
18-
"@nuxtjs/axios": "^5.12.2",
19-
"@nuxtjs/pwa": "^3.0.2",
2018
"@tailwindcss/typography": "^0.2.0",
2119
"core-js": "^3.6.5",
2220
"nuxt": "^2.14.6"
@@ -40,4 +38,4 @@
4038
"netlify-cms"
4139
],
4240
"license": "MIT"
43-
}
41+
}

0 commit comments

Comments
 (0)