@zhangxuejing123./sip-phone-sdk 0.0.1 → 0.0.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhangxuejing123./sip-phone-sdk",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
package/src/main.js CHANGED
@@ -4,7 +4,7 @@ import VueI18n from 'vue-i18n'
4
4
  import vuetify from './plugins/vuetify'
5
5
  import zh from '@/libs/zh.js'
6
6
  import en from '@/libs/en.js'
7
- import '@/utils/rem'
7
+ // import '@/utils/rem'
8
8
  Vue.use(VueI18n)
9
9
  const i18n = new VueI18n({
10
10
  locale: window.config.lang || localStorage.getItem('language') || 'zh', // 语言标识
package/vue.config.js CHANGED
@@ -5,33 +5,33 @@ module.exports = {
5
5
  publicPath: '/sip-phone-demo',
6
6
  productionSourceMap: false,
7
7
  // 新增的css配置部分
8
- css: {
9
- loaderOptions: {
10
- stylus: {
11
- use: [
12
- require('poststylus')([
13
- require('postcss-pxtorem')({
14
- rootValue: 100,
15
- propWhiteList: [],
16
- minPixelValue: 2,
17
- }),
18
- 'autoprefixer',
19
- ]),
20
- ],
21
- import: [require('path').resolve('./src/assets/theme.custom')]
22
- },
23
- postcss: {
24
- plugins: [
25
- require('postcss-pxtorem')({
26
- rootValue: 100,
27
- propWhiteList: [],
28
- minPixelValue: 2,
29
- }),
30
- require('autoprefixer')(),
31
- ],
32
- }
33
- }
34
- },
8
+ // css: {
9
+ // loaderOptions: {
10
+ // stylus: {
11
+ // use: [
12
+ // require('poststylus')([
13
+ // require('postcss-pxtorem')({
14
+ // rootValue: 100,
15
+ // propWhiteList: [],
16
+ // minPixelValue: 2,
17
+ // }),
18
+ // 'autoprefixer',
19
+ // ]),
20
+ // ],
21
+ // import: [require('path').resolve('./src/assets/theme.custom')]
22
+ // },
23
+ // postcss: {
24
+ // plugins: [
25
+ // require('postcss-pxtorem')({
26
+ // rootValue: 100,
27
+ // propWhiteList: [],
28
+ // minPixelValue: 2,
29
+ // }),
30
+ // require('autoprefixer')(),
31
+ // ],
32
+ // }
33
+ // }
34
+ // },
35
35
  devServer: {
36
36
  port: 8080,
37
37
  hot: true