From 7772b0f48ec290d04ad3287e8d1bef196d549ac8 Mon Sep 17 00:00:00 2001 From: sajjad Date: Fri, 24 Nov 2023 15:09:04 +0330 Subject: [PATCH] chore(frontend): Update nuxt.config.ts Adjusted the nuxt.config.ts file by fixing the indentation and changing the 'publicDir' output path to 'dist' for the nitro configuration. This ensures a consistent and organized project structure. --- frontend/nuxt.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/nuxt.config.ts b/frontend/nuxt.config.ts index c8c64c5..a05c1c2 100644 --- a/frontend/nuxt.config.ts +++ b/frontend/nuxt.config.ts @@ -1,13 +1,13 @@ import vuetify, { transformAssetUrls } from "vite-plugin-vuetify"; -import path from "path" +import path from "path"; // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ ssr: false, devtools: { enabled: true }, nitro: { output: { - publicDir: path.join(__dirname, 'build') - } + publicDir: path.join(__dirname, "dist"), + }, }, modules: [ (_options, nuxt) => {