sheer / vite.config.ts
Amju
fix(config): path not defined error (#3)
3f29b72 unverified
raw
history blame
276 Bytes
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { resolve } from "path";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': resolve(__dirname, './src'),
},
},
});