Skip to content

Commit

Permalink
chore(frontend): Update nuxt.config.ts
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sajjadth committed Nov 24, 2023
1 parent 1fe1792 commit 7772b0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -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) => {
Expand Down

0 comments on commit 7772b0f

Please sign in to comment.