Skip to content

Commit 20124bb

Browse files
committed
chore(resources): clean code
1 parent a7a95c2 commit 20124bb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

resources/css/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
--color-scarlet-700: #b11d00;
1515
--color-scarlet-800: #8e1a00;
1616
--color-scarlet-950: #4a0d00;
17-
}
17+
}

resources/js/ssr.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import createServer from '@inertiajs/vue3/server'
33
import { renderToString } from '@vue/server-renderer'
44
import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers'
55
import { createSSRApp, DefineComponent, h } from 'vue'
6-
import { route as ziggyRoute, Config } from 'ziggy-js'
6+
import { Config, route as ziggyRoute } from 'ziggy-js'
77

88
const appName = import.meta.env.VITE_APP_NAME || 'Laravel Starter Template'
99

@@ -27,8 +27,8 @@ createServer((page) =>
2727
if (!name) return ziggyRoute(undefined, undefined, absolute, ziggyConfig)
2828
return ziggyRoute(name, params, absolute, ziggyConfig)
2929
}) as {
30-
(): any;
31-
(name: string, params?: any, absolute?: boolean): string;
30+
(): any
31+
(name: string, params?: any, absolute?: boolean): string
3232
}
3333

3434
// Make route function available globally...

0 commit comments

Comments
 (0)