123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- const path = require('path')
- const { routes } = require('../src/routes')
-
- const config = {
- projectName: 'miniapp',
- date: '2021-5-12',
- designWidth: 750,
- deviceRatio: {
- 640: 2.34 / 2,
- 750: 1,
- 828: 1.81 / 2
- },
- sourceRoot: 'src',
- outputRoot: 'dist',
- plugins: [],
- defineConstants: {
- },
- alias: {
- '@/assets': path.resolve(__dirname, '..', 'src/assets'),
- '@/actions': path.resolve(__dirname, '..', 'src/actions'),
- '@/components': path.resolve(__dirname, '..', 'src/components'),
- '@/layout': path.resolve(__dirname, '..', 'src/layout'),
- '@/constants': path.resolve(__dirname, '..', 'src/constants'),
- '@/reducers': path.resolve(__dirname, '..', 'src/reducers'),
- '@/store': path.resolve(__dirname, '..', 'src/store'),
- '@/services': path.resolve(__dirname, '..', 'src/services'),
- '@/utils': path.resolve(__dirname, '..', 'src/utils'),
- '@/native': path.resolve(__dirname, '..', 'src/native'),
- '@/pages': path.resolve(__dirname, '..', 'src/pages'),
- '@/subpackages': path.resolve(__dirname, '..', 'src/subpackages'),
- },
- copy: {
- patterns: [
-
-
- ],
- options: {
- }
- },
- framework: 'react',
- mini: {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- compile: {
-
-
-
- },
- postcss: {
- pxtransform: {
- enable: true,
- config: {
-
- }
- },
- url: {
- enable: true,
- config: {
- limit: 1024
- }
- },
- cssModules: {
- enable: false,
- config: {
- namingPattern: 'module',
- generateScopedName: '[name]__[local]___[hash:base64:5]'
- }
- }
- }
- },
- h5: {
- publicPath: '/',
- staticDirectory: 'static',
- postcss: {
- autoprefixer: {
- enable: true,
- config: {
- }
- },
- cssModules: {
- enable: false,
- config: {
- namingPattern: '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'))
- }
|