123456789101112131415161718192021222324252627282930313233 |
- module.exports = {
- env: {
- NODE_ENV: '"development"'
- },
- defineConstants: {
- APPID:'"wx74db171e5f6524ad"'
-
-
-
-
- },
- mini: {},
- h5: {
- publicPath: '/',
- staticDirectory: 'static',
- postcss: {
- autoprefixer: {
- enable: true
- }
- },
-
-
- devServer: {
- proxy: {
- '/api': {
-
- target: 'http://127.0.0.1:7080',
- changeOrigin: true
- }
- }
- }
- }
- }
|