File tree Expand file tree Collapse file tree 5 files changed +13
-1
lines changed
apple-app-site-association Expand file tree Collapse file tree 5 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -10,3 +10,4 @@ PUBLIC_ANDROID_CERTS_SHA256=sha256
1010PUBLIC_APPLE_STORE_URL=https://apple-url.example.org
1111PUBLIC_APPLE_APP_ID=apple-id
1212PUBLIC_WINDOWS_STORE_URL=https://windows-url.example.org
13+ PUBLIC_WINDOWS_APP_FAMILY_NAME=windows-family-name
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1+ import { json , type RequestHandler } from '@sveltejs/kit' ;
2+ import { env } from '$env/dynamic/public' ;
3+
4+ export const GET = ( ( ) =>
5+ json ( [
6+ {
7+ packageFamilyName : env . PUBLIC_WINDOWS_APP_FAMILY_NAME ,
8+ paths : [ '*' ] ,
9+ excludePaths : [ ]
10+ }
11+ ] ) ) satisfies RequestHandler ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const config = {
1111 typescript : {
1212 config ( config ) {
1313 // The default globs in .svelte-kit/tsconfig.json ignore paths starting with a dot
14- config . include . push ( '../src/routes/.well-known/**/*.ts' ) ;
14+ config . include . push ( '../src/routes/(deep-links)/ .well-known/**/*.ts' ) ;
1515 config . include . push ( '../src/lib/api/*.ts' ) ;
1616 return config ;
1717 }
You can’t perform that action at this time.
0 commit comments