switch to sass and split global styles, rework heading css

This commit is contained in:
2023-12-18 13:41:01 -08:00
parent 29e0b35ee4
commit dd36f0e79e
11 changed files with 519 additions and 54 deletions

View File

@@ -1,3 +1,5 @@
import { resolve } from 'node:path';
import staticAdapter from '@sveltejs/adapter-static';
import { mdsvex } from 'mdsvex';
@@ -19,6 +21,9 @@ const config = {
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: staticAdapter(),
alias: {
'$styles': 'src/styles',
}
}
};