1
0
mirror of https://github.com/actix/examples synced 2025-06-26 09:17:41 +02:00

chore: fmt

This commit is contained in:
Rob Ede
2024-08-07 02:04:57 +01:00
parent b7b1005d2a
commit f30795f014
16 changed files with 100 additions and 89 deletions

View File

@ -11,7 +11,7 @@ cargo run
### web client
- [http://localhost:8080/user/info](http://localhost:8080/user/info)
```json5
```json
// payload structure
{
"username": "username",

View File

@ -1,6 +1,6 @@
// import './assets/main.css'
import { createApp } from 'vue'
import App from './App.vue'
import { createApp } from "vue"
import App from "./App.vue"
createApp(App).mount('#app')
createApp(App).mount("#app")

View File

@ -1,16 +1,14 @@
import { fileURLToPath, URL } from 'node:url'
import { fileURLToPath, URL } from "node:url"
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from "vite"
import vue from "@vitejs/plugin-vue"
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
})