This commit is contained in:
2025-07-18 22:07:22 -03:00
commit d30fd8d30b
25 changed files with 3270 additions and 0 deletions

14
vite.config.ts Executable file
View File

@@ -0,0 +1,14 @@
import path from 'path';
import { defineConfig, loadEnv } from 'vite';
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, '.', '');
return {
define: { },
resolve: {
alias: {
'@': path.resolve(__dirname, '.'),
}
}
};
});