代码之家  ›  专栏  ›  技术社区  ›  user3348410

npm运行后nuxt.js生成找不到文件

  •  0
  • user3348410  · 技术社区  · 6 年前

    i_m尝试使用npm run generate生成应用程序 在终端上。我没有得到一些错误,一切都很好地产生了。在我的开发服务器中,一切都运行良好,路由组件等,但是当我在dist文件夹中打开index.html时,我可以访问其他页面,在chrome控制台上会出现类似的错误。

    Failed to load resource: net::ERR_FILE_NOT_FOUND
    f8ff67c7350097487a5e.js:1 Failed to load resource: net::ERR_FILE_NOT_FOUND
    e63cddd635f290d15a6f.js:1 Failed to load resource: net::ERR_FILE_NOT_FOUND
    9a1a3c7742fdcce5403a.js:1 Failed to load resource: net::ERR_FILE_NOT_FOUND
    1e056384fb18617ca6a5.js:1 Failed to load resource: net::ERR_FILE_NOT_FOUND
    bde8656.png:1 Failed to load resource: net::ERR_FILE_NOT_FOUND
    /favicon.ico:1 Failed to load resource: net::ERR_FILE_NOT_FOUND
    

    我试图上传dist文件夹到我的ftp,但有太多相同的_

    这是我的nuxt.config文件

    const pkg = require('./package')
    
    module.exports = {
      mode: 'universal',
    
      /*
      ** Headers of the page
      */
      head: {
        title: pkg.name,
        meta: [
          { charset: 'utf-8' },
          { name: 'viewport', content: 'width=device-width, initial-scale=1' },
          { hid: 'description', name: 'description', content: pkg.description }
        ],
        link: [
          { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
        ]
      },
    
      /*
      ** Customize the progress-bar color
      */
      loading: { color: '#fff' },
    
      /*
      ** Global CSS
      */
      css: [
      ],
    
      /*
      ** Plugins to load before mounting the App
      */
      plugins: [
      ],
    
      /*
      ** Nuxt.js modules
      */
      modules: [
        // Doc: https://github.com/nuxt-community/axios-module#usage
        '@nuxtjs/axios',
        // Doc:https://github.com/nuxt-community/modules/tree/master/packages/bulma
        '@nuxtjs/bulma',
        // ['nuxt-validate', {
        //   lang: 'tr',
        //   // regular vee-validate options 
        // }]
      ],
      /*
      ** Axios module configuration
      */
      axios: {
        // See https://github.com/nuxt-community/axios-module#options
      },
    
      /*
      ** Build configuration
      */
      build: {
        postcss: {
          preset: {
            features: {
              customProperties: false
            }
          }
        },
        /*
        ** You can extend webpack config here
        */
        extend(config, ctx) {
    
        }
      }
    }
    
    1 回复  |  直到 6 年前
        1
  •  2
  •   Aldarund    6 年前

    如果您不是通过域根目录访问它,您需要在nuxt配置中设置它。 https://nuxtjs.org/api/configuration-router/#base

    export default {
      router: {
        base: '/app/'
      }
    }