Added auth functionality, initial work with views and field types

This commit is contained in:
Francisco Gaona
2025-12-22 03:31:55 +01:00
parent 859dca6c84
commit 0fe56c0e03
170 changed files with 11599 additions and 435 deletions

View File

@@ -41,6 +41,11 @@ export default defineNuxtConfig({
typescript: {
strict: true,
tsConfig: {
compilerOptions: {
verbatimModuleSyntax: false,
},
},
},
features: {
@@ -48,11 +53,14 @@ export default defineNuxtConfig({
},
vite: {
optimizeDeps: {
include: ['@internationalized/date'],
},
server: {
hmr: {
clientPort: 3001,
},
allowedHosts: ['jupiter.routebox.co', 'localhost', '127.0.0.1'],
allowedHosts: ['.routebox.co', 'localhost', '127.0.0.1'],
},
},