Skip to content

Commit

Permalink
Merge pull request #27 from pvdthings/neutral-color-scheme
Browse files Browse the repository at this point in the history
Revert things folder rename
  • Loading branch information
dillonfagan committed Jun 29, 2024
2 parents 857a23f + 5fa039f commit b00ab83
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/lib/components/things/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default } from "./Things.svelte";
export { default as Things } from "./Things.svelte";
2 changes: 1 addition & 1 deletion apps/web/src/lib/views/ThingsView.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script>
import { filteredThings } from '$lib/stores/catalog';
import Things from '$lib/components/Things';
import { Things } from '$lib/components/things';
</script>

<Things things={$filteredThings} />
6 changes: 2 additions & 4 deletions apps/web/svelte.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import adapter from '@sveltejs/adapter-vercel';
import preprocess from 'svelte-preprocess';
import { sveltePreprocess } from 'svelte-preprocess';

/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: preprocess({
preprocess: sveltePreprocess({
postcss: true
}),
kit: {
Expand Down

0 comments on commit b00ab83

Please sign in to comment.