Skip to content

Commit b786061

Browse files
committed
fix package.json import in svelte.config.js by updating to 'with' syntax
1 parent ef2b27e commit b786061

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

svelte.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import link_headings from 'rehype-autolink-headings'
66
import heading_slugs from 'rehype-slug'
77
import { sveltePreprocess } from 'svelte-preprocess'
88

9-
import pkg from './package.json' assert { type: 'json' }
9+
// eslint-disable-next-line @/quotes
10+
import pkg from './package.json' with { type: 'json' }
1011

1112
const rehypePlugins = [
1213
heading_slugs,

0 commit comments

Comments
 (0)