Package Exports
- myshop-base-components
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (myshop-base-components) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
backoffice
Backoffice Configurator
Build Setup
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report
# run unit tests
npm run unit
# run e2e tests
npm run e2e
# run all tests
npm testFor a detailed explanation on how things work, check out the guide and docs for vue-loader.
## Install sass for vuejs 2
npm install sass-loader node-sass style-loader --save-dev
## Loading a global settings file
npm install sass-resources-loader --save-dev
- modify build/utils.js for sass: to
sass: generateLoaders('sass').concat(
{
loader: 'sass-resources-loader',
options: {
// Provide path to the file with resources
resources: './src/style/resources.scss',
},
}
),Note: Copy resources.scss file from plugin folder to your project and change values as you required.