File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ const storage = new Storage({
1818
1919export default {
2020 async fetch ( req : Request ) {
21- console . info ( "serving" , req . url ) ;
2221 const path = new URL ( req . url ) . pathname ;
2322 if ( path . startsWith ( storage . publicPath ) ) {
2423 const source = await storage . serve ( path ) ;
@@ -75,5 +74,6 @@ export default {
7574 ) ;
7675 yield * guideDocs . map ( ( doc ) => doc . url ) ;
7776 await storage . write ( Path . join ( outDir , storage . publicPath ) ) ;
77+ storage . clear ( ) ;
7878 } ,
7979} ;
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ function CallToAction() {
124124 justify-content: center;
125125 align-items: center;
126126 ` } >
127- <div class="blur-background-2 ${ css `
127+ <div class="${ css `
128128 padding: 2em;
129129 display: flex;
130130 flex-direction: column;
@@ -178,13 +178,13 @@ export default async function Home({context: {storage}}: ViewProps) {
178178 storage=${ storage }
179179 >
180180 <${ Hero } />
181- <div class="blur-background-2 ${ css `
181+ <div class=${ css `
182182 font-size: max(18px, min(24px, 2vw));
183183 background-color: var(--bg-color);
184184 border-top: 1px solid var(--text-color);
185185 border-bottom: 1px solid var(--text-color);
186186 padding: 2em 0;
187- ` } " >
187+ ` } >
188188 <${ Marked } markdown=${ md . body } components=${ components } />
189189 </div>
190190 <${ CallToAction } />
You can’t perform that action at this time.
0 commit comments