Skip to content

Commit

Permalink
fix: 💫 updated config
Browse files Browse the repository at this point in the history
  • Loading branch information
rodneylab committed Jul 22, 2021
1 parent d70d0d4 commit c98142e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,7 @@ node_modules/
!.env.EXAMPLE

# Mac files
.DS_Store
.DS_Store

# Local Netlify folder
.netlify
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sveltekit-blog-mdx",
"version": "0.2.2",
"scripts": {
"dev": "svelte-kit dev --port 3030",
"dev": "svelte-kit dev --port 3000",
"build": "npm run generate:manifest && svelte-kit build",
"preview": "svelte-kit preview --port 3000",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/config/website.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const website = {
siteLanguage: 'en-GB',
siteTitle: 'SvelteKit Blog Mdx',
siteShortTitle: 'SvelteKit Blog',
siteUrl: import.meta.env.VITE_SITE_URL,
siteUrl: import.meta.env ? import.meta.env.VITE_SITE_URL : '',
icon: 'static/icon.png',
backgroundColor: '#1b4079',
themeColor: '#d62828',
Expand Down

0 comments on commit c98142e

Please sign in to comment.