diff options
| author | 2024-09-04 10:27:24 +0200 | |
|---|---|---|
| committer | 2024-09-04 10:27:24 +0200 | |
| commit | a087494f6809a7a8ea8e6c27a105d8c8f0f3839e (patch) | |
| tree | 617c0dbd168d6e340923dd17b07cc8239787e196 /vite.config.mjs | |
| parent | fe61544bafafc8b4de78cc71cb641af2dfb7b72d (diff) | |
| download | client-a087494f6809a7a8ea8e6c27a105d8c8f0f3839e.tar.gz client-a087494f6809a7a8ea8e6c27a105d8c8f0f3839e.tar.bz2 client-a087494f6809a7a8ea8e6c27a105d8c8f0f3839e.zip | |
Updated the libraries
Diffstat (limited to 'vite.config.mjs')
| -rw-r--r-- | vite.config.mjs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vite.config.mjs b/vite.config.mjs new file mode 100644 index 0000000..7c2d7f5 --- /dev/null +++ b/vite.config.mjs | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | import { defineConfig } from 'vite' | ||
| 2 | import react from '@vitejs/plugin-react' | ||
| 3 | import path from 'path'; | ||
| 4 | |||
| 5 | export default defineConfig({ | ||
| 6 | plugins: [react()], | ||
| 7 | resolve: { | ||
| 8 | alias: { | ||
| 9 | '~': path.resolve(__dirname, './src') | ||
| 10 | } | ||
| 11 | } | ||
| 12 | }) | ||
