* remove alias for dagre Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
24 lines
424 B
TypeScript
24 lines
424 B
TypeScript
import { resolve } from 'path'
|
|
import { defineNuxtConfig } from 'nuxt3'
|
|
|
|
export default defineNuxtConfig({
|
|
meta: {
|
|
title: 'Vue Flow',
|
|
description: 'Vue Flow Documentation',
|
|
},
|
|
router: {
|
|
base: '/',
|
|
},
|
|
vite: {
|
|
alias: {
|
|
vue: resolve('./node_modules/vue'),
|
|
},
|
|
resolve: {
|
|
dedupe: ['vue'],
|
|
preserveSymlinks: false,
|
|
},
|
|
},
|
|
ssr: true,
|
|
buildModules: ['nuxt-windicss'],
|
|
})
|