CRUD application example using Nuxt JS 3, Sequelize, and MySQL.
So you have to remove the bootstrap cdn link from main.css file and add your own css file or install library.
You will find the connection details in config/config.json file. Then you have to run migration command.
npx sequelize-cli db:migrate
Make sure to install the dependencies:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoist
Start the development server on http://localhost:3000
npm run dev
Build the application for production:
npm run build
Locally preview production build:
npm run preview
Checkout the deployment documentation for more information.