@widgetti/solara-vuetify-app 0.0.1-alpha.1 → 1.0.0
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/dist/solara-vuetify-app.js +9576 -4911
- package/dist/solara-vuetify-app.js.map +1 -1
- package/dist/solara-vuetify-app.min.js +1 -1
- package/dist/solara-vuetify-app.min.js.LICENSE.txt +195 -21
- package/dist/solara-vuetify-app.min.js.map +1 -1
- package/package.json +1 -1
- package/src/solara-vuetify-app.js +0 -1
- package/webpack.config.js +0 -3
package/package.json
CHANGED
|
@@ -2,7 +2,6 @@ import 'typeface-roboto';
|
|
|
2
2
|
import 'material-design-icons-iconfont/dist/material-design-icons.css';
|
|
3
3
|
import '@mdi/font/css/materialdesignicons.css';
|
|
4
4
|
|
|
5
|
-
// import Vue from 'vue/dist/vue.esm.js';
|
|
6
5
|
import Vue from 'vue';
|
|
7
6
|
import Vuetify from 'vuetify';
|
|
8
7
|
import 'vuetify/dist/vuetify.min.css';
|
package/webpack.config.js
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
var path = require('path');
|
|
2
|
-
var version = require('./package.json').version;
|
|
3
2
|
|
|
4
|
-
// Custom webpack rules are generally the same for all webpack bundles, hence
|
|
5
|
-
// stored in a separate local variable.
|
|
6
3
|
var rules = [
|
|
7
4
|
{ test: /\.css$/, use: ['style-loader', 'css-loader']},
|
|
8
5
|
{
|