Nuxt设置应用程序的src URL,而不会影响路由

时间:2019-04-19 21:57:44

标签: configuration nuxt.js

我正在尝试将我的应用程序的src URL设置为基本URL为'/ static /',而不会影响路由或文件夹结构

试图将路由器设置为“ / static”,但这会更改路由。还尝试将publicPath设置为'/ static / _nuxt',但是会生成一个新文件夹,因此结构最终为'/ static / static / _nuxt'。

//this changes the routing

module.exports = {
  mode: "spa",
  generate: {
    dir: "dist/static"
  },
  router: {
    base: '/static/'
  }
}`

//this changes the file path:

module.exports = {
  mode: "spa",
  generate: {
    dir: "dist/static"
  },

  build: {
    publicPath: '/static/_nuxt'
  }
}

没有找到设置src链接而不影响路由或文件夹结构的配置选项。

0 个答案:

没有答案