summaryrefslogtreecommitdiff
path: root/src/dev.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/dev.ts')
-rw-r--r--src/dev.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev.ts b/src/dev.ts
index d2a268ef6..524379dd1 100644
--- a/src/dev.ts
+++ b/src/dev.ts
@@ -16,7 +16,7 @@ snowpackLogger.level = 'silent';
const logging: LogOptions = {
level: 'debug',
- dest: defaultLogDestination
+ dest: defaultLogDestination,
};
export default async function (astroConfig: AstroConfig) {
@@ -97,7 +97,7 @@ export default async function (astroConfig: AstroConfig) {
res.setHeader('Content-Type', 'text/html; charset=utf-8');
res.end(html);
} catch (err) {
- switch(err.code) {
+ switch (err.code) {
case 'parse-error': {
err.filename = pathRelative(projectRoot.pathname, err.filename);
debugger;