diff --git a/postcss.config.mjs b/postcss.config.mjs new file mode 100644 index 00000000..e69de29b diff --git a/tailwind.config.ts b/tailwind.config.ts new file mode 100644 index 00000000..e69de29b diff --git a/tsconfig.json b/tsconfig.json index 3e8cc6be..9a02c127 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,7 +21,7 @@ "jsx": "react-jsx", "paths": { "@/*": [ - "./*" + "./src/*" ] }, "allowImportingTsExtensions": true, diff --git a/vite.config.ts b/vite.config.ts index f9b5dd54..db72d504 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -19,7 +19,7 @@ const viteConfig = defineViteConfig({ }, resolve: { alias: { - '@': path.resolve(__dirname, '.'), + '@': path.resolve(__dirname, './src'), } }, });