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 5e95b3d commit 071b58bCopy full SHA for 071b58b
docs/config.md
@@ -13,6 +13,11 @@ module.exports = {
13
// then change this to '/my-app/'
14
baseUrl: '/',
15
16
+ // baseUrl, but for the dev server.
17
+ // you'll only need this if you need to serve your dev server under
18
+ // a specific sub-path in order to work with your dev setup.
19
+ devBaseUrl: '/',
20
+
21
// where to output built files
22
outputDir: 'dist',
23
@@ -26,7 +31,7 @@ module.exports = {
26
31
27
32
// use the full build with in-browser compiler?
28
33
// https://vuejs.org/v2/guide/installation.html#Runtime-Compiler-vs-Runtime-only
29
- compiler: false,
34
+ runtimeCompiler: false,
30
35
36
// babel-loader skips `node_modules` deps by default.
37
// explicitly transpile a dependency with this option.
0 commit comments