UNPKG

yky-wx-components1

Version:

Taro实现微信小程序红包雨效果

113 lines (110 loc) 2.54 kB
const path = require('path') // 加在最上面 const config = { projectName: 'blwxapp', date: '2020-2-3', designWidth: 750, deviceRatio: { '640': 2.34 / 2, '750': 1, '828': 1.81 / 2 }, alias:{ '@':path.resolve(__dirname,'..','src/'), '@/assets':path.resolve(__dirname,'..','src/assets/'), '@components':path.resolve(__dirname,'..','src/components'), }, sourceRoot: 'src', outputRoot: 'dist', 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' } ] ] }, defineConstants: { }, mini: { postcss: { autoprefixer: { enable: true, config: { browsers: [ 'last 3 versions', 'Android >= 4.1', 'ios >= 8' ] } }, 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]' } }, compile: { include: ['taro-f2'], paths:{ "@imgurl":[ "src/assets/images" ] } } } }, 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]' } }, esnextModules: ['taro-f2'] } } } module.exports = function (merge) { if (process.env.NODE_ENV === 'development') { return merge({}, config, require('./dev')) } return merge({}, config, require('./prod')) }