@lancom/shared 0.0.205 → 0.0.206

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/nuxt.config.js +3 -2
  2. package/package.json +1 -1
package/nuxt.config.js CHANGED
@@ -1,6 +1,7 @@
1
1
  const sharedRoutes = require('./routes');
2
2
 
3
- module.exports = (config, axios, { raygunClient } = {}) => ({
3
+ module.exports = (config, axios, { raygunClient, publicPath } = {}) => ({
4
+ globalName: 'appLancom',
4
5
  mode: 'universal',
5
6
  head: {
6
7
  title: config.npm_package_name || '',
@@ -85,7 +86,7 @@ module.exports = (config, axios, { raygunClient } = {}) => ({
85
86
  STATIC_URL: process.env.STATIC_URL
86
87
  },
87
88
  build: {
88
- publicPath: '/client/',
89
+ publicPath: publicPath || '/client/',
89
90
  postcss: null,
90
91
  transpile: [
91
92
  'vee-validate/dist/rules',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lancom/shared",
3
- "version": "0.0.205",
3
+ "version": "0.0.206",
4
4
  "description": "lancom common scripts",
5
5
  "author": "e.tokovenko <e.tokovenko@gmail.com>",
6
6
  "repository": {