+
+
+
+
+
+
+
+
+
+
+ {title}
++ {description}
+diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..4dfeab9b0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +# Dependency directories +node_modules/ +dist/ +dist-ssr/ +.cache/ +parcel-cache/ +*.local + +# Environment variables +.env + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/README.md b/README.md index c05b94b34..f768e33fc 100644 --- a/README.md +++ b/README.md @@ -1,50 +1,8 @@ -
+ {description}
++ {description}
+ +Joyce Kuo
++46(0)727 49 98 99
+joyce.kuo@me.com
+{children}
diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 000000000..8b0f57b91 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], +})