[폴더, 파일 구조 정리]

This commit is contained in:
2025-09-25 15:33:11 +09:00
parent 51019d7f5f
commit ded762517e
30 changed files with 644 additions and 770 deletions

View File

@@ -11,18 +11,7 @@ export default defineNuxtConfig({
"@nuxtjs/tailwindcss",
],
piniaPluginPersistedstate: {
storage: 'localStorage',
},
app: {
head: {
link: [
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/icon?family=Material+Icons",
},
],
//script: [{ src: "/dist/igv.js", defer: true }],
},
storage: "localStorage",
},
vite: {
optimizeDeps: {
@@ -49,6 +38,8 @@ export default defineNuxtConfig({
},
plugins: ["~/plugins/vue3-tui-grid.client.ts"],
components: [
{ path: "~/components", pathPrefix: false }, // 경로 접두사 제거
{ path: "~/components/base", pathPrefix: false }, // @base/ 접두사 제거
{ path: "~/components/layout", pathPrefix: false }, // @layout/ 접두사 제거
{ path: "~/components/domain", pathPrefix: true }, // @domain/ 접두사 유지
],
});