Open AndyXuan opened 3 years ago
复现仓库 https://gitee.com/xdcls1022/taro
index.js 下面的配置 `const config = { projectName: 'test', date: '2020-8-24', // designWidth: 2048, // deviceRatio: { // '1280': 3.2 / 2, // '2048': 1, // '1024': 4 / 2 // }, // designWidth: 1024, // deviceRatio: { // '640': 2.34 / 2, // '750': 1, // '828': 1.81 / 2, // '1024': 1.47 / 2, // }, designWidth: 750, deviceRatio: { '640': 2.34 / 2, '750': 1, '828': 1.81 / 2 }, sourceRoot: 'src',
outputRoot: 'xtcapp/v1/defendfarm', //v1 babel: { sourceMap: true, presets: [ ['env', { modules: false }] ], plugins: [ 'transform-decorators-legacy', 'transform-class-properties', 'transform-object-rest-spread', ['transform-runtime', { 'helpers': false, 'polyfill': false, 'regenerator': true, 'moduleName': 'babel-runtime' }] ] }, plugins: [ '@tarojs/plugin-sass', '@tarojs/plugin-terser' ], defineConstants: { }, mini: { // compile: { // exclude: [ // 'nodemodules/taro-chart-f2/src/components/f2-canvas/lib/f2.js' // ] // }, postcss: { pxtransform: { enable: true, config: {} }, url: { enable: true, config: { limit: 10240 // 设定转换尺寸上限 } }, cssModules: { enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true config: { namingPattern: 'module', // 转换模式,取值为 global/module generateScopedName: '[name][local][hash:base64:5]' } } } }, h5: { publicPath: '/', staticDirectory: 'static', esnextModules: ['taro-ui','taro-f2'], output: { filename: 'js/[name].[hash:8].js', chunkFilename: 'js/[name].[chunkhash:8].js' }, miniCssExtractPluginOption: { filename: 'static/css/[name]/[hash].css', chunkFilename: 'static/css/[name]/[hash].css' },
router: {
mode: 'browser',
basename: 'xtcapp/v1/defendfarm', //v1
customRoutes: {
'/pages/index/index': '/index',
//TODO: 如需新增新的界面在这里配置新的路由地址
}
},
postcss: {
autoprefixer: {
enable: true,
config: {
browsers: [
'last 3 versions',
'Android >= 4.1',
'ios >= 8'
]
}
},
pxtransform: {
enable: true, //设置为false 表示编译的时候px不被转换
},
cssModules: {
enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true
config: {
namingPattern: 'module', // 转换模式,取值为 global/module
generateScopedName: '[name]__[local]___[hash:base64:5]'
}
}
}
} }
module.exports = function (merge) { if (process.env.NODE_ENV === 'development') { return merge({}, config, require('./dev')) } return merge({}, config, require('./prod')) } `
prod.js 下面的配置 `module.exports = { env: { NODE_ENV: '"production"' }, defineConstants: {}, mini: {}, h5: { publicPath: 'https://media.kaka.cn/xtcapp/v1/defendfarm', //v1 /**
basename: '/xtcapp/v1/defendfarm' 试试
basename: '/xtcapp/v1/defendfarm' 试试
我改成这个之后 `router: { mode: 'browser',
basename: '/xtcapp/v1/defendfarm', //v1
customRoutes: {
'/pages/index/index': '/index',
//TODO: 如需新增新的界面在这里配置新的路由地址
}
}`
,执行 yarn build:h5后,我重新放到了 https://media.kaka.cn/xtcapp/v1/defendfarm。还是报之前的错误
h5: { publicPath:"/xtcapp/v1/defendfarm/", router: { mode: "browser" basename: "/xtcapp/v1/defendfarm" } } 这样试试
相关平台
微信小程序
复现仓库
https://gitee.com/xdcls1022/taro 小程序基础库: 没有小程序 使用框架: React
复现步骤
4、这是我的ngix 配置 location ~ /xtcapp/v1/defendfarm { alias /data/www/media.kaka.cn/xtcapp/v1/defendfarm; index index.html try_files $uri /xtcapp/v1/defendfarm/index.html; }
期望结果
build之后的结果和预览结果一致
实际结果
不一致
环境信息
补充信息
总感觉是 config 目录下的 index.js 和 prod.js 里面配置不对。但找不出原因。