chore: update frontend configuration
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
import tailwindcss from '@tailwindcss/vite'
|
||||
export default defineNuxtConfig({
|
||||
compatibilityDate: '2025-07-15',
|
||||
devtools: { enabled: true },
|
||||
devServer: {
|
||||
port: 3001,
|
||||
port: 3001
|
||||
},
|
||||
modules: [
|
||||
[
|
||||
@@ -12,10 +12,10 @@ export default defineNuxtConfig({
|
||||
componentPrefix: 'Icon',
|
||||
warn: process.env.NODE_ENV === 'development',
|
||||
collections: {
|
||||
lucide: () => import('@iconify-json/lucide/icons.json').then((i) => i.default),
|
||||
},
|
||||
},
|
||||
],
|
||||
lucide: () => import('@iconify-json/lucide/icons.json').then(i => i.default)
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
runtimeConfig: {
|
||||
public: {
|
||||
@@ -27,13 +27,13 @@ export default defineNuxtConfig({
|
||||
enableDebug: process.env.NUXT_PUBLIC_ENABLE_DEBUG || 'true',
|
||||
enableAnalytics: process.env.NUXT_PUBLIC_ENABLE_ANALYTICS || 'false',
|
||||
csrfToken: process.env.NUXT_PUBLIC_CSRF_TOKEN || '',
|
||||
logLevel: process.env.NUXT_PUBLIC_LOG_LEVEL || 'debug',
|
||||
},
|
||||
logLevel: process.env.NUXT_PUBLIC_LOG_LEVEL || 'debug'
|
||||
}
|
||||
},
|
||||
vite: {
|
||||
plugins: [tailwindcss()],
|
||||
plugins: [tailwindcss()]
|
||||
},
|
||||
css: ["~/assets/app.css"],
|
||||
css: ['~/assets/app.css'],
|
||||
router: {
|
||||
options: {
|
||||
strict: false
|
||||
|
||||
Reference in New Issue
Block a user