This commit is contained in:
2026-04-07 14:50:23 +09:00
commit b4e485502b
4778 changed files with 2017091 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
export default defineNuxtPlugin((nuxtApp) => {
// _utils.log('defineNuxtPlugin() of !.ts executed...');
_crossCtl.setConfig(useRuntimeConfig().public);
/*
nuxtApp.hook('app:created', () => {
_utils.log('nuxtApp.hook, app:created');
});
nuxtApp.hook('app:beforeMount', () => {
_utils.log('nuxtApp.hook, app:beforeMount');
});
nuxtApp.hook('app:mounted', () => {
_utils.log('nuxtApp.hook, app:mounted');
});
nuxtApp.hook('vue:error', (..._args) => {
console.log('vue:error');
// if (process.client) {
// console.log(..._args)
// }
});
nuxtApp.hook('app:error', (..._args) => {
console.log('app:error');
// if (process.client) {
// console.log(..._args)
// }
});
nuxtApp.vueApp.config.errorHandler = (..._args) => {
console.log('global error handler');
// if (process.client) {
// console.log(..._args);
// }
return true;
};
*/
});