0.3.0 • Published 4 years ago

@itprosteer/vendure-np-shipping v0.3.0

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

Vendure Nova Poshta Shipping

Install

1. Install and configure Vendure

Here you can find out how to install

2. Install the core package

npm install @vendure-advanced-shipping/core 

2.1 Install the nova poshta shipping plugin.

npm install @itprosteer/vendure-np-shipping

3. Add all plugins in Vendure configuration

import { AdvancedShippingCorePlugin } from '@vendure-advanced-shipping/core';
import { NpShippingPlugin } from 'vendure-np-shipping';

const config: VendureConfig = {
  ...
  plugins: [
    AdvancedShippingCorePlugin,
    NpShippingPlugin.init({
         apiKey: nova_poshta_api_key
    })
  ]
}

4. Extend the UI plugin (optional)

You need to extend the UI adding the uiExtensions in the compileUiExtensions of the AdminUiPlugin. You can read more about how to config here

import { AdvancedShippingCorePlugin } from '@vendure-advanced-shipping/core';
const config: VendureConfig = {
  ...
  plugins: [
    ...
    AdminUiPlugin.init({
      ...
      app: compileUiExtensions({
        ...
        extensions: [AdvancedShippingCorePlugin.uiExtensions],
      })
    })
  ]
}
0.3.0

4 years ago

0.2.9

4 years ago

0.2.8

4 years ago

0.2.7

4 years ago

0.2.5

4 years ago

0.2.4

4 years ago

0.2.3

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.2.2

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago