Skip to content

Commit

Permalink
Merge branch 'main' into separate-gitlab-github-scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed Dec 18, 2023
2 parents fcc8fed + 2054e0b commit efb548c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.DS_Store
.pnpm-store
node_modules
/.netlify
/.svelte-kit
/build
/functions
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"devDependencies": {
"@macfja/svelte-persistent-store": "2.4.1",
"@sindresorhus/slugify": "^2.2.1",
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/adapter-netlify": "^3.0.0",
"@sveltejs/kit": "^2.0.1",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@types/eslint": "^8.44.9",
Expand Down
13 changes: 10 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions svelte.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import path from 'node:path';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import adapter from '@sveltejs/adapter-static';
import adapter from '@sveltejs/adapter-netlify';
import hljs from 'highlight.js';
import { mdsvex, escapeSvelte } from 'mdsvex';
import rehypeSlug from 'rehype-slug';
Expand Down Expand Up @@ -30,7 +30,7 @@ const config = {
],
extensions: extensions,
kit: {
adapter: adapter(),
adapter: adapter({ edge: true }),
alias: {
$components: path.resolve('./src/lib/components'),
$layout: path.resolve('./src/lib/components/layout'),
Expand Down

0 comments on commit efb548c

Please sign in to comment.