A minimalist front-end single-page blog built entirely with React, featuring support for multiple languages.
1. clone this repo
$> git clone https://github.com/moekm/multilingual-blog.git
2. cd into the downloaded repo folder
cd ./multilingual-blog
3. install the dependencies
$> npm install
To start the development server:
$> npm run dev
...
..
➜ Local: http://localhost:5173/multilingual-blog/
➜ Network: use --host to expose
➜ press h + enter to show help
To build project:
$> npm run build
After a few seconds, a ./dist
folder will be generated, and inside it will be all the production ready files.
Note: To make the default route "/" rather than "/multilingual-blog/" before you build, remove the
base: "/multilingual-blog/"
property invite.config.js
export default defineConfig({
// base: "/multilingual-blog/",
plugins: [react()],
})
elements will be added soon
...