init project

This commit is contained in:
2025-03-26 08:33:55 +08:00
commit bc02a11dc6
16 changed files with 3868 additions and 0 deletions

12
src/App.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { basename } from './modules/basename';
console.log('basename', basename);
export const App = () => {
return (
<div className='bg-slate-200 w-full h-full border'>
<div className='test-loading bg-black'>
<div></div>
</div>
</div>
);
};

1
src/index.css Normal file
View File

@@ -0,0 +1 @@
@import "tailwindcss";

6
src/main.tsx Normal file
View File

@@ -0,0 +1,6 @@
import { createRoot } from 'react-dom/client';
import { App } from './App.tsx';
import './index.css';
createRoot(document.getElementById('root')!).render(<App />);

1
src/modules/basename.ts Normal file
View File

@@ -0,0 +1 @@
export const basename = DEV_SERVER ? '/' : BASE_NAME;

6
src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
/// <reference types="vite/client" />
type SimpleObject = {
[key: string | number]: any;
};
declare let BASE_NAME: string;