Integrating the Nuxt framework into Wails

This commit is contained in:
zyj
2025-09-04 10:23:20 +08:00
commit 33e8a40ba1
39 changed files with 13653 additions and 0 deletions

23
frontend/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "nuxt-app",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"nuxt": "^4.1.0",
"oxc-parser": "^0.86.0",
"vue": "^3.5.20",
"vue-router": "^4.5.1"
},
"config": {
"nuxt": {
"port": "6330"
}
}
}