revert to no-cdn publicPath

This commit is contained in:
Sébastien Chopin 2017-03-24 18:54:54 +01:00
parent 05c6dd958c
commit 4431dfa368
3 changed files with 3 additions and 2 deletions

View File

@ -84,6 +84,7 @@ export function options () {
if (this.options.build && !Array.isArray(this.options.build.loaders)) extraDefaults.loaders = defaultsLoaders if (this.options.build && !Array.isArray(this.options.build.loaders)) extraDefaults.loaders = defaultsLoaders
if (this.options.build && !Array.isArray(this.options.build.postcss)) extraDefaults.postcss = defaultsPostcss if (this.options.build && !Array.isArray(this.options.build.postcss)) extraDefaults.postcss = defaultsPostcss
this.options.build = _.defaultsDeep(this.options.build, defaults, extraDefaults) this.options.build = _.defaultsDeep(this.options.build, defaults, extraDefaults)
/* istanbul ignore if */
if (this.dev && isUrl(this.options.build.publicPath)) { if (this.dev && isUrl(this.options.build.publicPath)) {
this.options.build.publicPath = defaults.publicPath this.options.build.publicPath = defaults.publicPath
} }

View File

@ -21,7 +21,7 @@ module.exports = {
string: 'Nuxt.js' string: 'Nuxt.js'
}, },
build: { build: {
publicPath: 'https://cdn.nuxtjs.org', publicPath: '/orion/',
analyze: { analyze: {
analyzerMode: 'disabled', analyzerMode: 'disabled',
generateStatsFile: true generateStatsFile: true

View File

@ -31,7 +31,7 @@ test('/ (custom app.html)', async t => {
test('/ (custom build.publicPath)', async t => { test('/ (custom build.publicPath)', async t => {
const { html } = await nuxt.renderRoute('/') const { html } = await nuxt.renderRoute('/')
t.true(html.includes('src="https://cdn.nuxtjs.org/vendor.bundle')) t.true(html.includes('src="/test/orion/vendor.bundle'))
}) })
test('/test/ (router base)', async t => { test('/test/ (router base)', async t => {