Fix Ctrl-C Ctrl-V typo in comments

This commit is contained in:
Mihal Malostanidis 2017-04-25 14:03:26 +03:00 committed by GitHub
parent 65a3ad5b08
commit 5e21a057aa

View File

@ -35,7 +35,7 @@ export default function ({ isClient, isServer }) {
'~': join(this.srcDir), '~': join(this.srcDir),
'static': join(this.srcDir, 'static'), // use in template with <img src="~static/nuxt.png" /> 'static': join(this.srcDir, 'static'), // use in template with <img src="~static/nuxt.png" />
'~static': join(this.srcDir, 'static'), '~static': join(this.srcDir, 'static'),
'assets': join(this.srcDir, 'assets'), // use in template with <img src="~static/nuxt.png" /> 'assets': join(this.srcDir, 'assets'), // use in template with <img src="~assets/nuxt.png" />
'~assets': join(this.srcDir, 'assets'), '~assets': join(this.srcDir, 'assets'),
'~plugins': join(this.srcDir, 'plugins'), '~plugins': join(this.srcDir, 'plugins'),
'~store': join(this.dir, '.nuxt/store'), '~store': join(this.dir, '.nuxt/store'),