Skip to content

Commit e8d3368

Browse files
committed
.
1 parent 1038d06 commit e8d3368

File tree

6 files changed

+469
-2
lines changed

6 files changed

+469
-2
lines changed

astro.config.mjs

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,23 @@ import { defineConfig } from 'astro/config';
22

33
export default defineConfig({
44
site: 'https://playground.htmlhint.com',
5-
integrations: []
5+
integrations: [],
6+
build: {
7+
cssMinify: true,
8+
},
9+
vite: {
10+
css: {
11+
postcss: './postcss.config.cjs',
12+
},
13+
build: {
14+
cssCodeSplit: true,
15+
rollupOptions: {
16+
output: {
17+
manualChunks: {
18+
bootstrap: ['bootstrap'],
19+
},
20+
},
21+
},
22+
},
23+
},
624
});

0 commit comments

Comments
 (0)