We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b729cd4 commit e731a4eCopy full SHA for e731a4e
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "vue-tiny-tabs",
3
- "version": "1.0.2",
+ "version": "1.0.3",
4
"main": "src/plugin.js",
5
"scripts": {
6
"build": "webpack -p"
webpack.config.js
@@ -1,9 +1,10 @@
var path = require('path')
var webpack = require('webpack')
+const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
entry: './src/plugin.js',
-
7
+
8
module: {
9
rules: [
10
// use babel-loader for js files
@@ -41,6 +42,7 @@ if (process.env.NODE_ENV === 'production') {
41
42
}),
43
new webpack.LoaderOptionsPlugin({
44
minimize: true
- })
45
+ }),
46
+ new VueLoaderPlugin()
47
])
48
}
0 commit comments