feix0518 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
..
assets 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
components 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
composables 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
layouts 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
middleware 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
pages 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
plugins 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
public 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
store 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
utils 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
.gitignore 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
README.md 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
app.vue 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
config.mjs 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
error.vue 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
gtmSetting.js 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
nuxt.config.ts 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
package.json 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
run.config.cjs 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu
tsconfig.json 4bcc1ab857 芯科出海平台项目首次代码提交 2 tygodni temu

README.md

Nuxt 3 Minimal Starter

Look at the nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist

Development Server

Start the development server on http://localhost:3000

Config Domain In Index.js [/composables/index.js]

export const apiUrl = 'https://www.b2btopsite.com/api/';
export const defaultUrl = 'https://www.b2btopsite.com/api/';
export const supplierUrl = 'https://seller.b2btopsite.com/user/login';
npm run dev

Production

Config Domain In Index.js [/composables/index.js]

export const apiUrl = 'https://www.b2btopsite.com/api/';
export const defaultUrl = 'https://www.b2btopsite.com/api/';
export const supplierUrl = 'https://seller.b2btopsite.com/user/login';

Build the application for production:

npm run build

Locally preview production build:

npm run preview

Checkout the deployment documentation for more information.