Skip to content

Commit

Permalink
Removed unnecessary alias
Browse files Browse the repository at this point in the history
  • Loading branch information
hschimpf committed Mar 11, 2024
1 parent e7b829e commit ecf3698
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
"noFallthroughCasesInSwitch": true,

"paths": {
"@inertiajs/inertia-vue3": [ "./node_modules/@inertiajs/vue3" ],
"@ziggy-js": [ "./vendor/tightenco/ziggy/dist/vue.es.js" ],

"@/*": [ "./resources/views/*" ],
Expand Down
4 changes: 2 additions & 2 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ export default defineConfig({

resolve: {
alias: {
'@inertiajs/inertia-vue3': path.resolve('node_modules/@inertiajs/vue3'),
'~@fortawesome': path.resolve(__dirname, 'node_modules/@fortawesome'),
'@ziggy-js': path.resolve('vendor/tightenco/ziggy/dist/vue.es.js'),

'~@fortawesome': path.resolve(__dirname, 'node_modules/@fortawesome'),

'@': path.resolve('resources/views'),
'~': path.resolve('modules'),
},
Expand Down

0 comments on commit ecf3698

Please sign in to comment.