const path = require('path'); const config = { projectName: 'ylt-taro', date: '2020-5-11', designWidth: 750, deviceRatio: { '640': 2.34 / 2, '750': 1, '828': 1.81 / 2, }, limit: 8192, sourceRoot: 'src', outputRoot: 'yltDist', alias: { '@/components': path.resolve(__dirname, '..', 'src/components'), '@/utils': path.resolve(__dirname, '..', 'src/utils'), '@/assets': path.resolve(__dirname, '..', 'src/assets'), '@/hooks': path.resolve(__dirname, '..', 'src/hooks'), '@/services': path.resolve(__dirname, '..', 'src/services'), }, 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'], sass: { resource: path.resolve(__dirname, '..', 'src/styles/index.scss'), }, defineConstants: {}, mini: { 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', postcss: { autoprefixer: { enable: true, config: { browsers: ['last 3 versions', 'Android >= 4.1', 'ios >= 8'], }, }, 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')); };