home · Posts · Archive · Tags

加入import別名讓import更好看

設定

  • tsconfig.json
{ "compilerOptions": { ... "baseUrl": ".", "paths": { "@/components/*": ["src/components/*"], ... } }
  • 使用
import Profile from "@/components/partial/Profile";

ref

👈Go Back

@alanhc