Commit Graph

175 Commits

Author SHA1 Message Date
Evan You
87f6eda2b9 docs: add a note about CSP for modern mode [ci skip] 2018-07-31 10:14:52 -04:00
athena0304
c6e5eeb210 docs: improve Chinese translation (#1988) 2018-07-30 23:26:27 -04:00
杨鑫
e80bfa239e docs: update browser-compatibility.md (#1969) 2018-07-30 23:26:22 -04:00
Evan You
77f7f9ac77 docs: filenameHashing 2018-07-30 16:01:15 -04:00
Evan You
1ce40cd247 docs: Merge branch 'docs' into dev 2018-07-26 22:43:25 -04:00
Evan You
b9ecb90476 feat: support specifying index output path via indexPath option 2018-07-26 22:14:49 -04:00
Evan You
ee82c3e53e refactor: only place css at root when using relative baseUrl 2018-07-26 17:15:38 -04:00
Guillaume Chau
0521818087 docs(css): auto import [ci skip] 2018-07-24 19:09:26 +02:00
Evan You
c245579b41 docs: mention how to use webpack built-in prefetch [ci skip] 2018-07-24 11:51:12 -04:00
勾三股四
a0012c4f82 [doc] Chinese docs translation (#1786) 2018-07-24 09:33:00 -04:00
Evan You
8415622f28 feat(build): allow specifying chunks in multi-page mode
close #1923
2018-07-23 13:49:21 -04:00
Evan You
30215c2819 feat: add corsUseCredentials option
This allows the user to configure which CORS strategy to use
for <script type=module> in modern mode.

close #1867
2018-07-23 13:04:48 -04:00
Evan You
45cc5e94e9 docs: add tip about env loading priorities 2018-07-23 12:34:49 -04:00
Evan You
7b93b55fc2 docs: improve wc build target docs 2018-07-20 11:12:14 -04:00
Olivier Ligot
b4509d617a docs: fix babel-preset-app link (#1903)
The documentation was using babel-preset-env instead of babel-preset-app
2018-07-20 07:38:53 -07:00
james south
76b668abac docs: add note about Git Bash on Windows (#1885) 2018-07-20 06:25:19 -07:00
Evan You
ab66dc199a docs: update GitHub pages deployment guide [ci skip] 2018-07-17 15:25:56 -04:00
Eric Ti-Yu Chiang
e37da595d5 docs: Add the GitHub Pages platform guide (#1872) 2018-07-17 15:25:56 -04:00
Anna Wu
53899a1aea update docs on how to deploy project to surge.sh (#1864)
pretty straightforward!
2018-07-17 15:25:56 -04:00
Guillaume Chau
cc9a6c2809 fix: vuepress docs branch 2018-07-17 15:25:56 -04:00
Tobias Bieniek
f02e0e8b89 docs(guide): Fix typo (#1847) 2018-07-17 15:25:56 -04:00
Tobias Bieniek
03501edb79 docs: guide/installation: Fix typo (#1848) 2018-07-17 15:25:56 -04:00
Tobias Bieniek
9b75658eb0 docs: guide/html-and-static-assets: Fix typos (#1849) 2018-07-17 15:25:56 -04:00
Gérard Mathiuet
7c7ca9f30c docs: Fix typo: directory → directly (#1851) 2018-07-17 15:25:56 -04:00
Evan You
a7d69dd584 docs: mention browserslist may be in separate file [ci skip] 2018-07-17 15:06:32 -04:00
Guillaume Chau
fd309b9031 Merge remote-tracking branch 'origin/docs' into docs 2018-07-14 15:04:39 +02:00
Alexander Sokolov
c4917faa00 docs: Update build-targets.md (#1853) 2018-07-14 15:03:48 +02:00
Alexander Sokolov
63ff8c1b4b docs: use relative links (#1844) 2018-07-13 17:56:29 -04:00
Guillaume Chau
eda4ce8839 refactor(ui): use package.json 'vuePlugins.ui' option 2018-07-13 18:06:37 +02:00
Guillaume Chau
08352811e0 feat: local service plugins, closes #1841 2018-07-13 17:39:07 +02:00
Guillaume Chau
d212dcd63e feat: package.json: vuePlugins.resolveFrom option, closes #1815 2018-07-13 17:04:11 +02:00
Thorsten Lünborg
47fb3b8189 docs(css.extract): Explain "always-off" in development mode (#1840) [ci skip]
closes #1801
2018-07-13 16:40:26 +02:00
Guillaume Chau
0b66a7570a fix: set minimum node version (from mini-css-extract) 2018-07-13 16:39:57 +02:00
Guillaume Chau
2a5d32160f docs: structure rework [ci skip] 2018-07-13 16:39:43 +02:00
Guillaume Chau
33b852f7a8 docs: fix tip [ci skip] 2018-07-12 00:36:17 +02:00
Matt Thomas
fdb51e1347 docs: fix title level (#1818)
* Update README.md

* Add warning about modern mode not working when the html-webpack-plugin is disabled

* Fix typo

Corrects the header level of the final section
2018-07-11 23:02:08 +02:00
Matt Thomas
c6b06ec748 docs: Add configuration examples section (#1779)
* Update README.md

* Add warning about modern mode not working when the html-webpack-plugin is disabled
2018-07-11 01:32:48 +02:00
posrix
67298808cd feat: pages support title option (#1619)
* pages support title option

* docs: pages `title` option
2018-07-11 01:29:30 +02:00
Ray Foss
62e2868007 docs: Include Tip about computed env vars (#1780)
* Include tip about computed env vars

I'm personally using this frivolously in my own footer
```
// vue.config.js
const revision = require('child_process').execSync('git rev-parse HEAD').toString().trim()
const pjson = require('./package.json')

process.env.VUE_APP_COMMIT = `"${revision}"`
process.env.VUE_APP_VERSION = `"${pjson.version}"`
module.exports = {}
```

```
<template>
  <footer>
      <span>v{{ version }} ({{ commit }})</span>
  </footer>
</template>

<script>
export default {
  data: function () {
    return {
      version: process.env.VUE_APP_VERSION,
      commit: process.env.VUE_APP_COMMIT
    }
  }
}
```

# Validation
 - I'm using this.
 - The inline require doesn't cause lint issues on vue-cli v3 config files. I did a full builds to check.

* tip format match

* tip format

* tip, format

* markdown formatting conflicts with es6 templates

Also, quotes, optional now. interesting. I tried it.

* remove template stray

* filenames are not proper english grammar, yet
2018-07-11 01:28:04 +02:00
Dave Dane Pacilan
24570dc4c5 docs: Add Firebase deployment guide (#1760) 2018-07-05 09:14:51 +02:00
Alexandru Bucur
c93c639e81 docs: assetsDir is ignored when using custom filenames (#1757)
trying to cover #1753 with this explanation
2018-07-04 20:04:59 +02:00
Thorsten Lünborg
d5fc24f707 docs: Document lintOnSave: 'error' option (#1755)
* Document lintOnSave: 'error' option

fix #1719

* Missing dot
2018-07-04 17:42:52 +02:00
Tim Wisniewski
226291c1e9 docs: add entry argument to serve command (#1724)
This argument is present in the help text but not in the docs.
2018-07-04 13:19:12 +02:00
Thorsten Lünborg
a9aa3decf6 fix: underscore escaping for dotfiles (#1737)
* WIP: fix undersocre escaping for dotfiles 

(fix #1732)

* Fix charAt

* adding a short explanation to the docs.

* improved wording
2018-07-04 13:12:18 +02:00
Thorsten Lünborg
0bdc9e2bb6 Merge pull request #1733 from RaphaelAddile/patch-1
Wording change in the cli-service guide
2018-07-03 11:57:46 +02:00
Evan You
fa7ce2a26e chore: update sponsor 2018-07-02 18:39:42 -04:00
Raphael Miedl
b9f38f417e Wording change in the cli-service guide
Change `update-to-date` to `up-to-date`. It sounded weird to me and doesn't appear in the dictionary: https://www.merriam-webster.com/dictionary/update-to-date
2018-07-02 20:30:54 +02:00
Evan You
2eabc1494b chore: add bit sponsor placement 2018-07-01 10:31:22 -04:00
Guillaume Chau
7883da3dab docs(ui): use Reverse Domain Notation 2018-06-21 16:09:51 +02:00
Guillaume Chau
c2da5fcc71 feat(ui): improved IpcMessenger with new options 2018-06-21 13:50:06 +02:00