feat: add landing page with nuxt

This commit is contained in:
Maulana Sodiqin
2025-04-07 19:10:29 +07:00
parent c907c696f5
commit ce115f63e4
21 changed files with 11839 additions and 509 deletions
+25
View File
@@ -0,0 +1,25 @@
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
import { defineNuxtConfig } from 'nuxt/config';
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
workspaceDir: '../../',
srcDir: 'src',
devtools: { enabled: true },
devServer: {
host: 'localhost',
port: 3000,
},
typescript: {
typeCheck: true,
tsConfig: {
extends: '../tsconfig.app.json', // Nuxt copies this string as-is to the `./.nuxt/tsconfig.json`, therefore it needs to be relative to that directory
},
},
imports: {
autoImport: true,
},
vite: {
plugins: [nxViteTsPaths()],
},
});