1
0

Setup Golang server with Vue3 using InertiaJS

This commit is contained in:
2024-10-27 20:59:26 +01:00
commit 2e284cbff9
10 changed files with 6665 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "webserver",
"version": "1.0.0",
"main": "server/js/App.js",
"scripts": {
"start": "webpack serve --config webpack.config.js"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@inertiajs/inertia": "^0.11.1",
"@inertiajs/inertia-vue3": "^0.6.0",
"@inertiajs/vue3": "^1.2.0",
"html-webpack-plugin": "^5.6.3",
"vue": "^3.5.12",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"vue-loader": "^17.4.2"
}
}