forked from jsnbuchanan/crowd-funder-for-time-pwa
- Fix TypeScript property error by using validRoutes constant - Replace console.log with logger utility - Fix string quote consistency - Improve v-for loop variable naming - Add proper type safety for route parameters Technical Changes: - Use VALID_DEEP_LINK_ROUTES constant for route list - Add logger import and replace console.log calls - Standardize string quotes to double quotes - Rename v-for variable to avoid shadowing - Add proper type assertions for route params This improves code quality and type safety in the DeepLinkErrorView component while maintaining consistent coding standards.
26 lines
433 B
TypeScript
26 lines
433 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'timesafari.app',
|
|
appName: 'TimeSafari',
|
|
webDir: 'dist',
|
|
bundledWebRuntime: false,
|
|
server: {
|
|
cleartext: true,
|
|
},
|
|
plugins: {
|
|
App: {
|
|
appUrlOpen: {
|
|
handlers: [
|
|
{
|
|
url: "timesafari://*",
|
|
autoVerify: true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|