We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc8164b commit 9d9a7e2Copy full SHA for 9d9a7e2
.gitignore
@@ -5,6 +5,7 @@
5
.nitro
6
.cache
7
dist
8
+build
9
10
# Node dependencies
11
node_modules
nuxt.config.ts
@@ -1,6 +1,7 @@
1
// https://nuxt.com/docs/api/configuration/nuxt-config
2
export default defineNuxtConfig({
3
srcDir: "./src",
4
+ buildDir: "./build",
compatibilityDate: "2025-05-15",
devtools: { enabled: true },
// Desktop apps are fully CSR
src-tauri/tauri.conf.json
@@ -4,7 +4,7 @@
"version": "0.1.0",
"identifier": "org.freesmlauncher.kaede",
"build": {
- "frontendDist": "../dist",
+ "frontendDist": "../build/dist",
"devUrl": "http://localhost:3000",
"beforeDevCommand": "bun run dev:frontend",
"beforeBuildCommand": "bun run build:frontend"
0 commit comments