Skip to content

Commit

Permalink
[docs] Fix 301 redirections in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Oct 5, 2024
1 parent ee92079 commit d29192a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind-ts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[Base UI](https://mui.com/base-ui/) is a library of unstyled React UI components and hooks.

[Vite](https://vitejs.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command
[Vite](https://vite.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command

[Tailwind CSS](https://tailwindcss.com/) is a utility-first CSS framework that provides low-level CSS classes that can be composed to build custom UI designs.

Expand Down
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind-ts/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function App() {
is a library of unstyled React UI components and hooks.
</li>
<li className="card">
<a href="https://vitejs.dev/" className="link">
<a href="https://vite.dev/" className="link">
Vite
</a>{' '}
is a build tool that aims to provide a faster and leaner development experience for modern
Expand Down
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind-ts/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

// https://vitejs.dev/config/
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
});
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[Base UI](https://mui.com/base-ui/) is a library of unstyled React UI components and hooks.

[Vite](https://vitejs.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command
[Vite](https://vite.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command

[Tailwind CSS](https://tailwindcss.com/) is a utility-first CSS framework that provides low-level CSS classes that can be composed to build custom UI designs.

Expand Down
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function App() {
is a library of unstyled React UI components and hooks.
</li>
<li className="card">
<a href="https://vitejs.dev/" className="link">
<a href="https://vite.dev/" className="link">
Vite
</a>{' '}
is a build tool that aims to provide a faster and leaner development experience for modern
Expand Down
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

// https://vitejs.dev/config/
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
});

0 comments on commit d29192a

Please sign in to comment.