@widgetti/solara-vuetify-app 0.0.1-alpha.0 → 0.0.1-alpha.1

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": "@widgetti/solara-vuetify-app",
3
- "version": "0.0.1-alpha.0",
3
+ "version": "0.0.1-alpha.1",
4
4
  "description": "Solara Vuetify App",
5
5
  "main": "solara-vuetify-app.js",
6
6
  "scripts": {
package/webpack.config.js CHANGED
@@ -16,7 +16,7 @@ module.exports = [
16
16
  entry: './src/solara-vuetify-app.js',
17
17
  output: {
18
18
  filename: 'solara-vuetify-app.min.js',
19
- path: path.resolve(__dirname, '..', '..', 'solara', 'server', 'static', 'vuetify'),
19
+ path: path.resolve(__dirname, 'dist'),
20
20
  libraryTarget: 'umd',
21
21
  publicPath: 'auto',
22
22
  },
@@ -25,15 +25,11 @@ module.exports = [
25
25
  rules: rules
26
26
  },
27
27
  mode: 'production',
28
- performance: {
29
- maxEntrypointSize: 1400000,
30
- maxAssetSize: 1400000
31
- }
32
28
  }, {
33
29
  entry: './src/solara-vuetify-app.js',
34
30
  output: {
35
31
  filename: 'solara-vuetify-app.js',
36
- path: path.resolve(__dirname, '..', '..', 'solara', 'server', 'static', 'vuetify'),
32
+ path: path.resolve(__dirname, 'dist'),
37
33
  libraryTarget: 'umd',
38
34
  publicPath: 'auto',
39
35
  },
@@ -42,9 +38,5 @@ module.exports = [
42
38
  rules: rules
43
39
  },
44
40
  mode: 'development',
45
- performance: {
46
- maxEntrypointSize: 1400000,
47
- maxAssetSize: 1400000
48
- }
49
41
  },
50
42
  ];