File tree Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1515 "@sveltejs/kit" : " ^2.7.2" ,
1616 "@sveltejs/vite-plugin-svelte" : " ^3.1.2" ,
1717 "@types/semver" : " ^7.5.8" ,
18- "mdsvex" : " ^0.12.3 " ,
18+ "mdsvex" : " ^0.12.6 " ,
1919 "postcss" : " ^8.4.47" ,
2020 "postcss-import" : " ^15.1.0" ,
2121 "semver" : " ^7.6.3" ,
Original file line number Diff line number Diff line change 1+ ---
2+ layout : faq
3+ ---
4+
15The Minecraft launcher keeps logs of game events as they happen which can be useful for debugging errors or other issues
26that may occur within the game.
37
Original file line number Diff line number Diff line change 1+ ---
2+ layout : faq
3+ ---
4+
15## Meteor and older versions of Minecraft
26
37Meteor is always kept up to date with the latest stable release of Minecraft, this means we do not support the use of
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ import { sveltePreprocess } from "svelte-preprocess";
33import atImport from "postcss-import" ;
44import { mdsvex } from "mdsvex" ;
55import { markdown } from "./src/lib/markdown.js" ;
6+ import { join , dirname } from "path" ;
7+ import { fileURLToPath } from "url" ;
8+
9+ const __filename = fileURLToPath ( import . meta. url ) ;
10+ const __dirname = dirname ( __filename ) ;
611
712/** @type {import("@sveltejs/kit").Config } */
813const config = {
@@ -23,7 +28,7 @@ const config = {
2328 mdsvex ( {
2429 extensions : [ ".md" ] ,
2530 layout : {
26- faq : " src/layouts/faq.svelte"
31+ faq : join ( __dirname , "./ src/layouts/faq.svelte")
2732 } ,
2833 remarkPlugins : [ markdown ]
2934 } )
You can’t perform that action at this time.
0 commit comments