40 lines
704 B
TypeScript
40 lines
704 B
TypeScript
export default defineNuxtConfig({
|
|
app: {
|
|
head: {
|
|
charset: 'UTF-8',
|
|
viewport: 'width=device-width, initial-scale=1',
|
|
title: '참여기관포털'
|
|
}
|
|
},
|
|
ssr: false,
|
|
pages: true,
|
|
devServer: {
|
|
host: '0.0.0.0'
|
|
},
|
|
compatibilityDate: '2024-04-03',
|
|
unhead: {
|
|
renderSSRHeadOptions: {
|
|
omitLineBreaks: true
|
|
}
|
|
},
|
|
imports: {
|
|
autoImport: true
|
|
},
|
|
devtools: { enabled: true },
|
|
modules: [
|
|
'@pinia/nuxt',
|
|
'@unocss/nuxt',
|
|
'@ant-design-vue/nuxt',
|
|
'@hebilicious/vue-query-nuxt'
|
|
],
|
|
vite: {
|
|
optimizeDeps: {
|
|
include: ['tui-grid', 'ant-design-vue']
|
|
}
|
|
},
|
|
alias: {},
|
|
experimental: {
|
|
payloadExtraction: true
|
|
}
|
|
});
|