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 fd81a88 commit ae37c54Copy full SHA for ae37c54
README.md
@@ -73,7 +73,7 @@ new Vue({
73
74
### Webpack Config
75
76
-`vue-loader` (v15 later):
+`vue-loader` (v15 or later):
77
78
```javascript
79
// for vue.config.js (Vue CLI)
@@ -89,6 +89,22 @@ module.exports = {
89
}
90
```
91
92
93
+
94
+```javascript
95
+// for webpack.config.js (Without Vue CLI)
96
+module.exports = {
97
+ module: {
98
+ rules: [
99
+ {
100
+ resourceQuery: /blockType=i18n/,
101
+ loader: '@kazupon/vue-i18n-loader',
102
+ },
103
+ ]
104
+ }
105
+}
106
+```
107
108
`vue-loader` (~v14.x):
109
110
0 commit comments