diff --git a/app/utils/apis.js b/app/utils/apis.js index e5bfae0..6ad8c28 100644 --- a/app/utils/apis.js +++ b/app/utils/apis.js @@ -22,6 +22,12 @@ export default /** @type {const} */ ([ url_detail: "data-detail/Import_Setting/", params: {}, }, + { + name: "importlog", + url: "data/Import_Log/", + url_detail: "data-detail/Import_Log/", + params: {}, + }, { name: "individual", url: "data/Individual/", diff --git a/nuxt.config.ts b/nuxt.config.ts index bbf9360..0082c79 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -15,8 +15,8 @@ export default defineNuxtConfig({ }, }, rootAttrs: { - class: 'min-h-dvh is-flex is-flex-direction-column' - } + class: "min-h-dvh is-flex is-flex-direction-column", + }, }, modules: ["@pinia/nuxt", "pinia-plugin-persistedstate/nuxt", "@nuxt/image", "nuxt-qrcode", "@nuxt/icon"], compatibilityDate: "2026-06-01", @@ -24,26 +24,27 @@ export default defineNuxtConfig({ vite: { optimizeDeps: { include: [ - '@vue-email/render', - '@vue/devtools-core', - '@vue/devtools-kit', - '@vueup/vue-quill', - 'dayjs', // CJS - 'dayjs/locale/vi', // CJS - 'dayjs/plugin/isSameOrAfter', // CJS - 'dayjs/plugin/isSameOrBefore', // CJS - 'dayjs/plugin/localizedFormat', // CJS - 'dayjs/plugin/relativeTime', // CJS - 'dayjs/plugin/weekOfYear', // CJS - 'dayjs/plugin/weekday', // CJS - 'es-toolkit', - 'es-toolkit/compat', - 'highcharts', // CJS - 'highcharts-vue', // CJS - 'highcharts/modules/export-data', // CJS - 'highcharts/modules/exporting', // CJS - 'xlsx', - ] - } - } + "@vue-email/render", + "@vue/devtools-core", + "@vue/devtools-kit", + "@vueup/vue-quill", + "dayjs", // CJS + "dayjs/locale/vi", // CJS + "dayjs/plugin/isSameOrAfter", // CJS + "dayjs/plugin/isSameOrBefore", // CJS + "dayjs/plugin/localizedFormat", // CJS + "dayjs/plugin/relativeTime", // CJS + "dayjs/plugin/weekOfYear", // CJS + "dayjs/plugin/weekday", // CJS + "es-toolkit", + "es-toolkit/compat", + "highcharts", // CJS + "highcharts-vue", // CJS + "highcharts/modules/export-data", // CJS + "highcharts/modules/exporting", // CJS + "jsbarcode", // CJS + "xlsx", + ], + }, + }, });