前提・実現したいこと
Nuxt.jsでSPAのサイトを作成しています。
サイトが出来上がったのでデプロイを行い、httpサーバにアップロードしようとしました。npm run generateでdistファイルの作成はできたのですが、いざサイトを開くとコンソールに以下エラーメッセージが発生しました。local-hostではエラーはなく表示されたので、困っています
発生している問題・エラーメッセージ
Failed to load resource: net::ERR_FILE_NOT_FOUND 73d0f6306a791b0ea2f2.js:1 Failed to load resource: net::ERR_FILE_NOT_FOUND bc203b7d79e3d1c0bdc1.js:1 Failed to load resource: net::ERR_FILE_NOT_FOUND a4a28ed881707bdfb22b.js:1 Failed to load resource: net::ERR_FILE_NOT_FOUND 816f49cc768696b06a78.js:1 Failed to load resource: net::ERR_FILE_NOT_FOUND /favicon.ico:1
該当のソースコード
JavaScript
1/*nuxt.config.js*/ 2export default { 3 mode: 'spa', 4 /* 5 ** Headers of the page 6 */ 7 head: { 8 title: process.env.npm_package_name || '', 9 meta: [ 10 { charset: 'utf-8' }, 11 { name: 'viewport', content: 'width=device-width, initial-scale=1' }, 12 { hid: 'description', name: 'description', content: process.env.npm_package_description || '' } 13 ], 14 link: [ 15 { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' } 16 ] 17 }, 18 /* 19 ** Customize the progress-bar color 20 */ 21 loading: { color: '#fff' }, 22 /* 23 ** Global CSS 24 */ 25 css: [ 26 '@/assets/css/style.css', 27 ], 28 /* 29 ** Plugins to load before mounting the App 30 */ 31 plugins: [ 32 '~plugins/vue-scrollto' 33 ], 34 /* 35 ** Nuxt.js dev-modules 36 */ 37 buildModules: [ 38 ], 39 /* 40 ** Nuxt.js modules 41 */ 42 modules: [ 43 // Doc: https://axios.nuxtjs.org/usage 44 '@nuxtjs/axios', 45 ], 46 47 /* 48 ** Axios module configuration 49 ** See https://axios.nuxtjs.org/options 50 */ 51 axios: { 52 }, 53 /* 54 ** Build configuration 55 */ 56 build: { 57 /* 58 ** You can extend webpack config here 59 */ 60 extend (config, ctx) { 61 }, 62 quiet: false, 63 } 64} 65 66
試したこと
build:{}の中にquiet:falseを追加しました。
補足情報(FW/ツールのバージョンなど)
node version: v12.5.0
npm version: 6.9.0
開発環境
VSCode
mac book pro 2017ver.
mac OS : Catalina
プロセッサ名: Dual-Core Intel Core i7
メモリ: 16 GB
あなたの回答
tips
プレビュー