diff options
| author | Elizabeth Hunt <me@liz.coffee> | 2025-10-04 16:53:25 -0700 |
|---|---|---|
| committer | Elizabeth Hunt <me@liz.coffee> | 2025-10-04 16:53:25 -0700 |
| commit | c2503078307759860736b4467507abf1e68c326d (patch) | |
| tree | 1c29e78c763abf312cfaa7e78edd9294cf28aa20 /vite.config.ts | |
| download | ansicolor-c2503078307759860736b4467507abf1e68c326d.tar.gz ansicolor-c2503078307759860736b4467507abf1e68c326d.zip | |
Initial commit
Diffstat (limited to 'vite.config.ts')
| -rw-r--r-- | vite.config.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..8022455 --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; +import path from 'path'; + +export default defineConfig({ + resolve: { + alias: { + '@': path.resolve(__dirname, 'src'), + }, + }, + plugins: [react()], +}); |
