Skip to content

Commit

Permalink
Update deps, fix quasar scss
Browse files Browse the repository at this point in the history
  • Loading branch information
Marekkon5 committed Jan 23, 2025
1 parent 474e085 commit b6a2515
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
27 changes: 14 additions & 13 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,21 @@
"preview": "vite preview"
},
"dependencies": {
"@quasar/extras": "^1.16.12",
"axios": "^1.7.7",
"compare-versions": "^6.1.1",
"quasar": "^2.17.0",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"vuedraggable": "^4.1.0"
"@quasar/extras": "1.16.16",
"axios": "1.7.9",
"compare-versions": "6.1.1",
"quasar": "2.17.7",
"vue": "3.5.13",
"vue-router": "4.5.0",
"vuedraggable": "4.1.0"
},
"devDependencies": {
"@quasar/vite-plugin": "^1.7.0",
"@vitejs/plugin-vue": "^5.1.4",
"sass": "1.79.5",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vue-tsc": "^2.1.6"
"@quasar/vite-plugin": "1.9.0",
"@vitejs/plugin-vue": "5.2.1",
"path": "^0.12.7",
"sass": "1.83.4",
"typescript": "5.7.3",
"vite": "6.0.11",
"vue-tsc": "2.2.0"
}
}
3 changes: 2 additions & 1 deletion client/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import path from 'path';
import { defineConfig } from 'vite';
import { quasar, transformAssetUrls } from '@quasar/vite-plugin';
import vue from '@vitejs/plugin-vue';
Expand All @@ -10,7 +11,7 @@ export default defineConfig({
template: { transformAssetUrls }
}),
quasar({
sassVariables: 'src/style/quasar.scss'
sassVariables: path.resolve('src/style/quasar.scss')
})
],
server: {
Expand Down

0 comments on commit b6a2515

Please sign in to comment.