try android build

This commit is contained in:
2025-05-28 17:27:25 +02:00
parent 4774d3fdc1
commit ceb5f43f15
10 changed files with 68 additions and 24 deletions

View File

@ -88,9 +88,13 @@ export default defineNuxtConfig({
// Enable SSG
ssr: false,
// Enables the development server to be discoverable by other devices when running on iOS physical devices
devServer: { host: process.env.TAURI_DEV_HOST || 'localhost', port: 3003 },
devServer: {
host: process.env.TAURI_DEV_HOST || '0.0.0.0',
},
vite: {
base: './',
plugins: [tailwindcss()],
// Better support for Tauri CLI output
clearScreen: false,
@ -103,4 +107,4 @@ export default defineNuxtConfig({
strictPort: true,
},
},
})
})