You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
701 B
42 lines
701 B
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
extends: ['@nuxt/ui-pro'],
|
|
|
|
modules: [
|
|
'@nuxt/content',
|
|
'@nuxt/eslint',
|
|
'@nuxt/fonts',
|
|
'@nuxt/image',
|
|
'@nuxt/ui'
|
|
],
|
|
devServer: {
|
|
port: 10189
|
|
},
|
|
routeRules: {
|
|
// Temporary workaround for prerender regression. see https://github.com/nuxt/nuxt/issues/27490
|
|
'/': { prerender: true }
|
|
},
|
|
|
|
devtools: {
|
|
enabled: true
|
|
},
|
|
|
|
typescript: {
|
|
strict: false
|
|
},
|
|
|
|
future: {
|
|
compatibilityVersion: 4
|
|
},
|
|
|
|
eslint: {
|
|
config: {
|
|
stylistic: {
|
|
commaDangle: 'never',
|
|
braceStyle: '1tbs'
|
|
}
|
|
}
|
|
},
|
|
|
|
compatibilityDate: '2024-07-11'
|
|
})
|