|
@@ -1,6 +1,12 @@
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
export default defineNuxtConfig({
|
|
export default defineNuxtConfig({
|
|
|
ssr: false, // SPA 모드 활성화
|
|
ssr: false, // SPA 모드 활성화
|
|
|
|
|
+ nitro: {
|
|
|
|
|
+ prerender: {
|
|
|
|
|
+ routes: ['/'], // 오직 루트 페이지만 prerender
|
|
|
|
|
+ crawlLinks: false // 자동 크롤링 비활성화
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
app: {
|
|
app: {
|
|
|
head: {
|
|
head: {
|
|
|
titleTemplate: '',
|
|
titleTemplate: '',
|