Skip to content

Commit

Permalink
Merge pull request #221 from Hossein13M/dev
Browse files Browse the repository at this point in the history
feat(global)!: implement infrastructure of the project
  • Loading branch information
Hossein13M authored Feb 16, 2025
2 parents fb02374 + cc89f6c commit e0e79d9
Show file tree
Hide file tree
Showing 91 changed files with 395 additions and 69 deletions.
5 changes: 0 additions & 5 deletions app.vue

This file was deleted.

16 changes: 15 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
import { defineNuxtConfig } from 'nuxt/config';
import path from 'path';
import tailwindcss from '@tailwindcss/vite';

export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
devtools: { enabled: true },
ssr: false,
target: 'static',
})
srcDir: 'src/',
css: ['~/assets/css/main.css'],
alias: {
'@': path.resolve(__dirname, 'src'),
'@components': path.resolve(__dirname, 'src/components'),
'@types': path.resolve(__dirname, 'src/types'),
},
vite: {
plugins: [tailwindcss()],
},
});
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
]
},
"dependencies": {
"@tailwindcss/vite": "^4.0.6",
"nuxt": "^3.13.0",
"tailwindcss": "^4.0.6",
"vue": "latest",
"vue-router": "latest"
},
Expand Down
Loading

0 comments on commit e0e79d9

Please sign in to comment.