我正在尝试将我的应用程序的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链接而不影响路由或文件夹结构的配置选项。