Skip to content

Commit 881ac76

Browse files
committed
List and Table styling changes for print media
1 parent 50b4d81 commit 881ac76

56 files changed

Lines changed: 993 additions & 1638 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,7 @@
396396
"ungap",
397397
"unhold",
398398
"uninstrumented",
399+
"unlayered",
399400
"unsampled",
400401
"unscanned",
401402
"unsexy",

astro.config.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ const viteLogger = createLogger(undefined, { allowClearScreen: false })
4242
const sentryAuthToken = process.env['SENTRY_AUTH_TOKEN']
4343
const shouldEnableSentryIntegration = Boolean(sentryAuthToken)
4444
const sentryReleaseName = getPackageRelease()
45+
const astroEnvConfig = environmentalVariablesConfig as NonNullable<AstroUserConfig['env']>
46+
const astroMarkdownConfig = markdownConfig as unknown as NonNullable<AstroUserConfig['markdown']>
4547

4648
const shouldSuppressViteWarning = (message: string): boolean => {
4749
return (
@@ -123,8 +125,8 @@ export default defineConfig({
123125
devToolbar: {
124126
enabled: false,
125127
},
126-
env: environmentalVariablesConfig,
127-
markdown: markdownConfig as AstroUserConfig['markdown'],
128+
env: astroEnvConfig,
129+
markdown: astroMarkdownConfig,
128130
/**
129131
* Astro sets substantial Vite config internally in the framework. When you use Vitest
130132
* in an Astro project, you use Astro's getViteConfig helper to get the resolved internal
@@ -204,7 +206,6 @@ export default defineConfig({
204206
*/
205207
'process.env.CSS_TRANSFORMER_WASM': 'false',
206208
},
207-
/* @ts-expect-error - tailwindcss plugin type compatibility */
208209
plugins: [
209210
fixContentAssetPropagation(),
210211
tailwindcss(),

0 commit comments

Comments
 (0)